This file is indexed.

/usr/lib/ocaml/plugin-loader/PluginLoader.annot is in liboasis-ocaml-dev 0.4.10-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
"src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2074 "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2076
type(
  'a -> 'a
)
ident(
  def s_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2083 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2077 "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2078
type(
  'a
)
ident(
  def s "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2081 "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2082
)
"src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2081 "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2082
type(
  'a
)
ident(
  int_ref s "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2077 "src/ext/plugin-loader/src/PluginLoader.ml" 39 2070 2078
)
"src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
type(
  ('a, 'b, 'c, 'd, 'e, 'f) format6 -> ('a, 'b, 'c, 'd, 'e, 'f) format6
)
ident(
  def f_ "src/ext/plugin-loader/src/PluginLoader.ml" 41 2104 2104 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2090 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2093
type(
  ('a, 'b, 'c, 'd, 'e, 'f) format6
)
ident(
  def fmt "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2096 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2103
)
"src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2096 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2098
type(
  ('a, 'b, 'c, 'd, 'd, 'a) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2098 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2100
type(
  ('a, 'b, 'c, 'd, 'd, 'a) format6 ->
  ('a, 'b, 'c, 'd, 'e, 'f) format6 -> ('a, 'b, 'c, 'd, 'e, 'f) format6
)
ident(
  ext_ref Pervasives.( ^^ )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2100 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2103
type(
  ('a, 'b, 'c, 'd, 'e, 'f) format6
)
ident(
  int_ref fmt "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2090 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2093
)
"src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2096 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2103
call(
  tail
)
type(
  ('a, 'b, 'c, 'd, 'e, 'f) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 50 2153 2157 "src/ext/plugin-loader/src/PluginLoader.ml" 50 2153 2159
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 51 2162 2164 "src/ext/plugin-loader/src/PluginLoader.ml" 51 2162 2189
type(
  (exn -> string option) -> unit
)
ident(
  ext_ref Printexc.register_printer
)
"src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2227 "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2228
type(
  string
)
ident(
  def s "src/ext/plugin-loader/src/PluginLoader.ml" 54 2250 2258 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2367
)
"src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2244 "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2245
type(
  Dynlink.error
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 54 2250 2258 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2367
)
"src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2230 "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2245
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2212 "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2246
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2274 "src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2281
type(
  (string -> string -> string, unit, string) format ->
  string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2283 "src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2285
type(
  (string -> string -> string, unit, string, string, string, string) format6 ->
  (string -> string -> string, unit, string, string, string, string) format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2286 "src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2324
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2282 "src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2325
call(
  stack
)
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2339 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2340
type(
  string
)
ident(
  int_ref s "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2227 "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2228
)
"src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2342 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2363
type(
  Dynlink.error -> string
)
ident(
  ext_ref Dynlink.error_message
)
"src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2364 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2365
type(
  Dynlink.error
)
ident(
  int_ref e "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2244 "src/ext/plugin-loader/src/PluginLoader.ml" 53 2204 2245
)
"src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2341 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2366
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 55 2263 2273 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2367
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 54 2250 2258 "src/ext/plugin-loader/src/PluginLoader.ml" 56 2326 2367
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2392 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2393
type(
  string
)
ident(
  def s "src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2449 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
)
"src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2428 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2430
type(
  string
)
ident(
  def s' "src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2449 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
)
"src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2432 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2435
type(
  string
)
ident(
  def msg "src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2449 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
)
"src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2395 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2436
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2377 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2437
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2453 "src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2456
type(
  string
)
ident(
  def pkg "src/ext/plugin-loader/src/PluginLoader.ml" 65 2597 2605 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
)
"src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2472 "src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2473
type(
  string
)
ident(
  int_ref s "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2392 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2393
)
"src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2474 "src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2475
type(
  string -> string -> bool
)
ident(
  ext_ref Pervasives.( = )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2476 "src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2478
type(
  string
)
ident(
  int_ref s' "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2428 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2430
)
"src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2472 "src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2478
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2496 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2499
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2499 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2500
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2500 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2501
type(
  string
)
ident(
  int_ref s "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2392 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2393
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2501 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2502
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2502 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2505
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2500 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2505
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2496 "src/ext/plugin-loader/src/PluginLoader.ml" 61 2484 2505
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2533 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2540
type(
  (string -> string -> string, unit, string) format ->
  string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2542 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2544
type(
  (string -> string -> string, unit, string, string, string, string) format6 ->
  (string -> string -> string, unit, string, string, string, string) format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2545 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2579
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2541 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2580
call(
  stack
)
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2581 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2583
type(
  string
)
ident(
  int_ref s' "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2428 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2430
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2584 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2585
type(
  string
)
ident(
  int_ref s "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2392 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2393
)
"src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2533 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2585
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 60 2459 2469 "src/ext/plugin-loader/src/PluginLoader.ml" 63 2521 2585
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 65 2597 2609 "src/ext/plugin-loader/src/PluginLoader.ml" 65 2597 2619
type(
  string
)
ident(
  def additional "src/ext/plugin-loader/src/PluginLoader.ml" 68 2688 2696 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2635 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2638
type(
  string
)
ident(
  int_ref msg "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2432 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2435
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2639 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2640
type(
  string -> string -> bool
)
ident(
  ext_ref Pervasives.( = )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2641 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2643
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2635 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2643
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2649 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2651
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2657 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2664
type(
  (string -> string, unit, string) format -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2665 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2672
type(
  (string -> string, unit, string) format
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2673 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2676
type(
  string
)
ident(
  int_ref msg "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2432 "src/ext/plugin-loader/src/PluginLoader.ml" 58 2369 2435
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2657 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2676
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2632 "src/ext/plugin-loader/src/PluginLoader.ml" 66 2622 2676
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2712 "src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2719
type(
  (string -> string -> string, unit, string) format ->
  string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2721 "src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2723
type(
  (string -> string -> string, unit, string, string, string, string) format6 ->
  (string -> string -> string, unit, string, string, string, string) format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2724 "src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2756
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2720 "src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2757
call(
  stack
)
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2771 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2774
type(
  string
)
ident(
  int_ref pkg "src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2453 "src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2456
)
"src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2775 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2785
type(
  string
)
ident(
  int_ref additional "src/ext/plugin-loader/src/PluginLoader.ml" 65 2597 2609 "src/ext/plugin-loader/src/PluginLoader.ml" 65 2597 2619
)
"src/ext/plugin-loader/src/PluginLoader.ml" 69 2701 2711 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 68 2688 2696 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 65 2597 2605 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 59 2441 2449 "src/ext/plugin-loader/src/PluginLoader.ml" 70 2758 2786
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2811 "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2812
type(
  string
)
ident(
  def s "src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2828 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2919
)
"src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2814 "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2815
type(
  exn
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2828 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2919
)
"src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2796 "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2816
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2834 "src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2841
type(
  (string -> string -> string, unit, string) format ->
  string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2842 "src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2881
type(
  (string -> string -> string, unit, string) format
)
"src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2894 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2895
type(
  string
)
ident(
  int_ref s "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2811 "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2812
)
"src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2897 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2915
type(
  exn -> string
)
ident(
  ext_ref Printexc.to_string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2916 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2917
type(
  exn
)
ident(
  int_ref e "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2814 "src/ext/plugin-loader/src/PluginLoader.ml" 72 2788 2815
)
"src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2896 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2918
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2833 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2919
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 73 2820 2828 "src/ext/plugin-loader/src/PluginLoader.ml" 74 2882 2919
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 75 2920 2945 "src/ext/plugin-loader/src/PluginLoader.ml" 75 2920 2947
type(
  string
)
ident(
  def nm "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2959 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3005
)
"src/ext/plugin-loader/src/PluginLoader.ml" 75 2920 2928 "src/ext/plugin-loader/src/PluginLoader.ml" 75 2920 2947
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2965 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2972
type(
  (string -> string, unit, string) format -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2974 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2976
type(
  (string -> string, unit, string, string, string, string) format6 ->
  (string -> string, unit, string, string, string, string) format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2977 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3000
type(
  (string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2973 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3001
call(
  stack
)
type(
  (string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3002 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3004
type(
  string
)
ident(
  int_ref nm "src/ext/plugin-loader/src/PluginLoader.ml" 75 2920 2945 "src/ext/plugin-loader/src/PluginLoader.ml" 75 2920 2947
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2964 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3005
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 2959 "src/ext/plugin-loader/src/PluginLoader.ml" 76 2951 3005
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 77 3006 3014 "src/ext/plugin-loader/src/PluginLoader.ml" 77 3006 3015
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 78 3019 3027 "src/ext/plugin-loader/src/PluginLoader.ml" 78 3019 3031
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 52 2190 2194 "src/ext/plugin-loader/src/PluginLoader.ml" 78 3019 3032
type(
  exn -> string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 51 2162 2164 "src/ext/plugin-loader/src/PluginLoader.ml" 78 3019 3033
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 81 3036 3055 "src/ext/plugin-loader/src/PluginLoader.ml" 81 3036 3071
call(
  stack
)
"src/ext/plugin-loader/src/PluginLoader.ml" 87 3096 3115 "src/ext/plugin-loader/src/PluginLoader.ml" 87 3096 3131
call(
  stack
)
"src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3138 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3161
type(
  SetString.t ref
)
ident(
  def findlib_packages_loaded "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3186 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3164 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3167
type(
  SetString.t -> SetString.t ref
)
ident(
  ext_ref Pervasives.ref
)
"src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3168 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3183
type(
  SetString.t
)
ident(
  ext_ref SetString.empty
)
"src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3164 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3183
type(
  SetString.t ref
)
"src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3190 "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3209
type(
  SetString.elt -> unit
)
ident(
  def add_findlib_package "src/ext/plugin-loader/src/PluginLoader.ml" 98 3368 3368 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3210 "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3211
type(
  SetString.elt
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3216 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3283
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3216 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3239
type(
  SetString.t ref
)
ident(
  int_ref findlib_packages_loaded "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3138 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3161
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3240 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3242
type(
  SetString.t ref -> SetString.t -> unit
)
ident(
  ext_ref Pervasives.( := )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3243 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3256
type(
  SetString.elt -> SetString.t -> SetString.t
)
ident(
  ext_ref SetString.add
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3257 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3258
type(
  SetString.elt
)
ident(
  int_ref e "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3210 "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3211
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3259 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3260
type(
  SetString.t ref -> SetString.t
)
ident(
  ext_ref Pervasives.( ! )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3260 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3283
type(
  SetString.t ref
)
ident(
  int_ref findlib_packages_loaded "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3138 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3161
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3259 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3283
type(
  SetString.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3243 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3283
call(
  stack
)
type(
  SetString.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3216 "src/ext/plugin-loader/src/PluginLoader.ml" 94 3214 3283
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 101 3393 3397 "src/ext/plugin-loader/src/PluginLoader.ml" 101 3393 3401
type(
  SetString.elt list -> unit
)
ident(
  def init "src/ext/plugin-loader/src/PluginLoader.ml" 107 3529 3529 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 101 3393 3402 "src/ext/plugin-loader/src/PluginLoader.ml" 101 3393 3425
type(
  SetString.elt list
)
ident(
  def findlib_packages_loaded "src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3454 "src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3526
)
"src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3454 "src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3463
type(
  (SetString.elt -> unit) -> SetString.elt list -> unit
)
ident(
  ext_ref List.iter
)
"src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3464 "src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3483
type(
  SetString.elt -> unit
)
ident(
  int_ref add_findlib_package "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3190 "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3209
)
"src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3484 "src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3507
type(
  SetString.elt list
)
ident(
  int_ref findlib_packages_loaded "src/ext/plugin-loader/src/PluginLoader.ml" 101 3393 3402 "src/ext/plugin-loader/src/PluginLoader.ml" 101 3393 3425
)
"src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3454 "src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3507
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3511 "src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3523
type(
  ?env_ocamlpath:string ->
  ?env_ocamlfind_destdir:string ->
  ?env_ocamlfind_metadir:string ->
  ?env_ocamlfind_commands:string ->
  ?env_ocamlfind_ignore_dups_in:string ->
  ?env_camllib:string ->
  ?env_ldconf:string -> ?config:string -> ?toolchain:string -> unit -> unit
)
ident(
  ext_ref Findlib.init
)
"src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3524 "src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3526
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3511 "src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3526
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 103 3452 3454 "src/ext/plugin-loader/src/PluginLoader.ml" 104 3509 3526
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3823 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3832
type(
  [> `Debug | `Error | `Warning ] t -> string -> string list
)
ident(
  def findfiles "src/ext/plugin-loader/src/PluginLoader.ml" 212 6154 6154 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3833 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3834
type(
  ([> `Debug | `Error | `Warning ] as 'a) t
)
ident(
  def t "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3835 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
)
"src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3835 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3842
type(
  string
)
ident(
  def package "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3847 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
)
"src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3851 "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3866
type(
  string -> string list
)
ident(
  def rev_split_blank "src/ext/plugin-loader/src/PluginLoader.ml" 148 4320 4322 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
)
"src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3867 "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3870
type(
  string
)
ident(
  def str "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3877 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
)
"src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3881 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3884
type(
  Buffer.t
)
ident(
  def buf "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3911 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
)
"src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3887 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3900
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3901 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3903
type(
  int
)
"src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3887 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3903
call(
  stack
)
type(
  Buffer.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3915 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3918
type(
  string list ref
)
ident(
  def lst "src/ext/plugin-loader/src/PluginLoader.ml" 129 3931 3935 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
)
"src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3921 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3924
type(
  string list -> string list ref
)
ident(
  ext_ref Pervasives.ref
)
"src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3925 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3927
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3921 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3927
type(
  string list ref
)
"src/ext/plugin-loader/src/PluginLoader.ml" 129 3931 3935 "src/ext/plugin-loader/src/PluginLoader.ml" 129 3931 3946
type(
  (char -> unit) -> string -> unit
)
ident(
  ext_ref String.iter
)
"src/ext/plugin-loader/src/PluginLoader.ml" 131 3963 3973 "src/ext/plugin-loader/src/PluginLoader.ml" 131 3963 3976
type(
  char
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 3993 "src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4006
type(
  Buffer.t -> int
)
ident(
  ext_ref Buffer.length
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4007 "src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4010
type(
  Buffer.t
)
ident(
  int_ref buf "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3881 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3884
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 3993 "src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4010
call(
  stack
)
type(
  int
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4011 "src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4012
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( > )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4013 "src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4014
type(
  int
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 3993 "src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 4014
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4052 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4055
type(
  string list ref
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3915 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3918
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4056 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4058
type(
  string list ref -> string list -> unit
)
ident(
  ext_ref Pervasives.( := )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4059 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4074
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4075 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4078
type(
  Buffer.t
)
ident(
  int_ref buf "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3881 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3884
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4059 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4078
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4082 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4083
type(
  string list ref -> string list
)
ident(
  ext_ref Pervasives.( ! )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4083 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4086
type(
  string list ref
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3915 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3918
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4082 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4086
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4059 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4086
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4052 "src/ext/plugin-loader/src/PluginLoader.ml" 134 4038 4086
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 135 4088 4102 "src/ext/plugin-loader/src/PluginLoader.ml" 135 4088 4114
type(
  Buffer.t -> unit
)
ident(
  ext_ref Buffer.clear
)
"src/ext/plugin-loader/src/PluginLoader.ml" 135 4088 4115 "src/ext/plugin-loader/src/PluginLoader.ml" 135 4088 4118
type(
  Buffer.t
)
ident(
  int_ref buf "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3881 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3884
)
"src/ext/plugin-loader/src/PluginLoader.ml" 135 4088 4102 "src/ext/plugin-loader/src/PluginLoader.ml" 135 4088 4118
call(
  tail
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 133 4020 4032 "src/ext/plugin-loader/src/PluginLoader.ml" 136 4119 4134
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 132 3980 3990 "src/ext/plugin-loader/src/PluginLoader.ml" 136 4119 4134
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 137 4135 4145 "src/ext/plugin-loader/src/PluginLoader.ml" 137 4135 4146
type(
  char
)
ident(
  def c "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4160 "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4181
)
"src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4160 "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4175
type(
  Buffer.t -> char -> unit
)
ident(
  ext_ref Buffer.add_char
)
"src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4176 "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4179
type(
  Buffer.t
)
ident(
  int_ref buf "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3881 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3884
)
"src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4180 "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4181
type(
  char
)
ident(
  int_ref c "src/ext/plugin-loader/src/PluginLoader.ml" 137 4135 4145 "src/ext/plugin-loader/src/PluginLoader.ml" 137 4135 4146
)
"src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4160 "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4181
call(
  tail
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 130 3947 3953 "src/ext/plugin-loader/src/PluginLoader.ml" 138 4150 4182
type(
  char -> unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 139 4183 4189 "src/ext/plugin-loader/src/PluginLoader.ml" 139 4183 4192
type(
  string
)
ident(
  int_ref str "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3867 "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3870
)
"src/ext/plugin-loader/src/PluginLoader.ml" 129 3931 3935 "src/ext/plugin-loader/src/PluginLoader.ml" 139 4183 4192
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 141 4204 4216 "src/ext/plugin-loader/src/PluginLoader.ml" 141 4204 4231
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"src/ext/plugin-loader/src/PluginLoader.ml" 141 4204 4232 "src/ext/plugin-loader/src/PluginLoader.ml" 141 4204 4235
type(
  Buffer.t
)
ident(
  int_ref buf "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3881 "src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3884
)
"src/ext/plugin-loader/src/PluginLoader.ml" 141 4204 4216 "src/ext/plugin-loader/src/PluginLoader.ml" 141 4204 4235
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 142 4241 4251 "src/ext/plugin-loader/src/PluginLoader.ml" 142 4241 4253
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 142 4241 4257 "src/ext/plugin-loader/src/PluginLoader.ml" 142 4241 4259
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4270 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4273
type(
  string
)
ident(
  def str "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4277 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4295
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4277 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4280
type(
  string list ref
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3915 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3918
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4281 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4283
type(
  string list ref -> string list -> unit
)
ident(
  ext_ref Pervasives.( := )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4284 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4287
type(
  string
)
ident(
  int_ref str "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4270 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4273
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4291 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4292
type(
  string list ref -> string list
)
ident(
  ext_ref Pervasives.( ! )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4292 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4295
type(
  string list ref
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3915 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3918
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4291 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4295
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4284 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4295
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4277 "src/ext/plugin-loader/src/PluginLoader.ml" 143 4260 4295
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 140 4194 4198 "src/ext/plugin-loader/src/PluginLoader.ml" 144 4296 4303
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4309 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4310
type(
  string list ref -> string list
)
ident(
  ext_ref Pervasives.( ! )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4310 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
type(
  string list ref
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3915 "src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3918
)
"src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4309 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 140 4194 4198 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 129 3931 3935 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 128 3907 3911 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 127 3873 3877 "src/ext/plugin-loader/src/PluginLoader.ml" 145 4305 4313
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4334 "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4339
type(
  string list
)
ident(
  def preds "src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4408 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
)
"src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4352 "src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4369
type(
  bool
)
ident(
  ext_ref Dynlink.is_native
)
"src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4375 "src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4383
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4389 "src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4395
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4349 "src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4395
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4348 "src/ext/plugin-loader/src/PluginLoader.ml" 150 4342 4396
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4412 "src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4416
type(
  SetString.elt list
)
ident(
  def deps "src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4571 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
)
"src/ext/plugin-loader/src/PluginLoader.ml" 153 4419 4425 "src/ext/plugin-loader/src/PluginLoader.ml" 153 4419 4436
type(
  (SetString.elt -> bool) -> SetString.elt list -> SetString.elt list
)
ident(
  ext_ref List.filter
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4450 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4451
type(
  SetString.elt
)
ident(
  def a "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4455 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4501
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4455 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4458
type(
  bool -> bool
)
ident(
  ext_ref Pervasives.not
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4460 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4473
type(
  SetString.elt -> SetString.t -> bool
)
ident(
  ext_ref SetString.mem
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4474 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4475
type(
  SetString.elt
)
ident(
  int_ref a "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4450 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4451
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4476 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4477
type(
  SetString.t ref -> SetString.t
)
ident(
  ext_ref Pervasives.( ! )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4477 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4500
type(
  SetString.t ref
)
ident(
  int_ref findlib_packages_loaded "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3138 "src/ext/plugin-loader/src/PluginLoader.ml" 90 3134 3161
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4476 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4500
type(
  SetString.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4459 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4501
call(
  stack
)
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4455 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4501
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4445 "src/ext/plugin-loader/src/PluginLoader.ml" 154 4437 4502
type(
  SetString.elt -> bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4512 "src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4542
type(
  string list -> string list -> SetString.elt list
)
ident(
  ext_ref Findlib.package_deep_ancestors
)
"src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4543 "src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4548
type(
  string list
)
ident(
  int_ref preds "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4334 "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4339
)
"src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4550 "src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4557
type(
  string
)
ident(
  int_ref package "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3835 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3842
)
"src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4549 "src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4558
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4511 "src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4559
call(
  stack
)
type(
  SetString.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 153 4419 4425 "src/ext/plugin-loader/src/PluginLoader.ml" 155 4503 4559
call(
  stack
)
type(
  SetString.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4571 "src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4572
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3833 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3834
)
"src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4571 "src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4576
type(
  'a -> string -> unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 158 4577 4583 "src/ext/plugin-loader/src/PluginLoader.ml" 158 4577 4589
type(
  'a
)
"src/ext/plugin-loader/src/PluginLoader.ml" 159 4590 4597 "src/ext/plugin-loader/src/PluginLoader.ml" 159 4590 4604
type(
  (string -> string -> string, unit, string) format ->
  string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 160 4605 4615 "src/ext/plugin-loader/src/PluginLoader.ml" 160 4605 4617
type(
  (string -> string -> string, unit, string, string, string, string) format6 ->
  (string -> string -> string, unit, string, string, string, string) format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 160 4605 4618 "src/ext/plugin-loader/src/PluginLoader.ml" 160 4605 4642
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 160 4605 4614 "src/ext/plugin-loader/src/PluginLoader.ml" 160 4605 4643
call(
  stack
)
type(
  (string -> string -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4653 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4660
type(
  string
)
ident(
  int_ref package "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3835 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3842
)
"src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4662 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4675
type(
  string -> SetString.elt list -> string
)
ident(
  ext_ref String.concat
)
"src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4676 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4680
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4681 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4685
type(
  SetString.elt list
)
ident(
  int_ref deps "src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4412 "src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4416
)
"src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4661 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4686
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 159 4590 4596 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4687
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4571 "src/ext/plugin-loader/src/PluginLoader.ml" 161 4644 4687
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4697 "src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4707
type(
  string list -> string list
)
ident(
  def fix_suffix "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 4990 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
)
"src/ext/plugin-loader/src/PluginLoader.ml" 163 4710 4716 "src/ext/plugin-loader/src/PluginLoader.ml" 163 4710 4728
type(
  (string -> string) -> string list -> string list
)
ident(
  ext_ref List.rev_map
)
"src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4742 "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4744
type(
  string
)
ident(
  def fn "src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4806 "src/ext/plugin-loader/src/PluginLoader.ml" 170 4962 4977
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4809 "src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4830
type(
  string -> string -> bool
)
ident(
  ext_ref Filename.check_suffix
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4831 "src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4833
type(
  string
)
ident(
  int_ref fn "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4742 "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4744
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4834 "src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4839
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4809 "src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4839
call(
  stack
)
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4840 "src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4842
type(
  bool -> bool -> bool
)
ident(
  ext_ref Pervasives.( || )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4857 "src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4878
type(
  string -> string -> bool
)
ident(
  ext_ref Filename.check_suffix
)
"src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4879 "src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4881
type(
  string
)
ident(
  int_ref fn "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4742 "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4744
)
"src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4882 "src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4888
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4857 "src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4888
call(
  stack
)
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4809 "src/ext/plugin-loader/src/PluginLoader.ml" 167 4843 4888
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4908 "src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4931
type(
  string -> string
)
ident(
  ext_ref Filename.chop_extension
)
"src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4932 "src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4934
type(
  string
)
ident(
  int_ref fn "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4742 "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4744
)
"src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4907 "src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4935
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4936 "src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4937
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4938 "src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4945
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4907 "src/ext/plugin-loader/src/PluginLoader.ml" 168 4894 4945
call(
  tail
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 170 4962 4975 "src/ext/plugin-loader/src/PluginLoader.ml" 170 4962 4977
type(
  string
)
ident(
  int_ref fn "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4742 "src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4744
)
"src/ext/plugin-loader/src/PluginLoader.ml" 166 4795 4806 "src/ext/plugin-loader/src/PluginLoader.ml" 170 4962 4977
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 164 4729 4737 "src/ext/plugin-loader/src/PluginLoader.ml" 170 4962 4978
type(
  string -> string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 163 4710 4716 "src/ext/plugin-loader/src/PluginLoader.ml" 170 4962 4978
call(
  stack
)
type(
  string list -> string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 4998 "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 5001
type(
  SetString.elt list -> string list
)
ident(
  def aux "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 4990 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
)
"src/ext/plugin-loader/src/PluginLoader.ml" 174 5019 5029 "src/ext/plugin-loader/src/PluginLoader.ml" 174 5019 5031
type(
  SetString.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 174 5019 5035 "src/ext/plugin-loader/src/PluginLoader.ml" 174 5019 5037
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5049
type(
  SetString.elt
)
ident(
  def a "src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5069 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
)
"src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5053 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5055
type(
  SetString.elt list
)
ident(
  def tl "src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5069 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
)
"src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5055
type(
  SetString.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5073 "src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5077
type(
  string list
)
ident(
  def mods "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5830 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
)
"src/ext/plugin-loader/src/PluginLoader.ml" 178 5096 5114 "src/ext/plugin-loader/src/PluginLoader.ml" 178 5096 5117
type(
  string
)
ident(
  def raw "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5224 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5267
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5136 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5160
type(
  string list -> SetString.elt -> string -> string
)
ident(
  ext_ref Findlib.package_property
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5162 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5170
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5174 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5179
type(
  string list
)
ident(
  int_ref preds "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4334 "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4339
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5161 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5180
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5181 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5182
type(
  SetString.elt
)
ident(
  int_ref a "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5049
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5183 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5192
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5136 "src/ext/plugin-loader/src/PluginLoader.ml" 179 5120 5192
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5224 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5232
type(
  string list -> string list
)
ident(
  ext_ref List.rev
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5234 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5244
type(
  string list -> string list
)
ident(
  int_ref fix_suffix "src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4697 "src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4707
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5246 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5261
type(
  string -> string list
)
ident(
  int_ref rev_split_blank "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3851 "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3866
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5262 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5265
type(
  string
)
ident(
  int_ref raw "src/ext/plugin-loader/src/PluginLoader.ml" 178 5096 5114 "src/ext/plugin-loader/src/PluginLoader.ml" 178 5096 5117
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5245 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5266
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5233 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5267
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5224 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5267
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 178 5096 5110 "src/ext/plugin-loader/src/PluginLoader.ml" 181 5210 5267
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 182 5268 5285 "src/ext/plugin-loader/src/PluginLoader.ml" 182 5268 5294
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5360 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5363
type(
  string
)
ident(
  def raw "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5430 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5473
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5366 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5390
type(
  string list -> SetString.elt -> string -> string
)
ident(
  ext_ref Findlib.package_property
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5391 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5396
type(
  string list
)
ident(
  int_ref preds "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4334 "src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4339
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5397 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5398
type(
  SetString.elt
)
ident(
  int_ref a "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5049
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5399 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5408
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5366 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5408
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5430 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5438
type(
  string list -> string list
)
ident(
  ext_ref List.rev
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5440 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5450
type(
  string list -> string list
)
ident(
  int_ref fix_suffix "src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4697 "src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4707
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5452 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5467
type(
  string -> string list
)
ident(
  int_ref rev_split_blank "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3851 "src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3866
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5468 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5471
type(
  string
)
ident(
  int_ref raw "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5360 "src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5363
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5451 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5472
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5439 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5473
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5430 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5473
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 185 5338 5356 "src/ext/plugin-loader/src/PluginLoader.ml" 186 5412 5473
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 187 5474 5495 "src/ext/plugin-loader/src/PluginLoader.ml" 187 5474 5504
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5552 "src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5553
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3833 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3834
)
"src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5552 "src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5557
type(
  'a -> string -> unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5558 "src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5564
type(
  'a
)
"src/ext/plugin-loader/src/PluginLoader.ml" 190 5565 5588 "src/ext/plugin-loader/src/PluginLoader.ml" 190 5565 5595
type(
  (SetString.elt -> string, unit, string) format -> SetString.elt -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 191 5596 5622 "src/ext/plugin-loader/src/PluginLoader.ml" 191 5596 5624
type(
  (SetString.elt -> string, unit, string, string, string, string) format6 ->
  (SetString.elt -> string, unit, string, string, string, string) format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 191 5596 5625 "src/ext/plugin-loader/src/PluginLoader.ml" 192 5672 5713
type(
  (SetString.elt -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 191 5596 5621 "src/ext/plugin-loader/src/PluginLoader.ml" 192 5672 5714
call(
  stack
)
type(
  (SetString.elt -> string, unit, string, string, string, string) format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 193 5715 5740 "src/ext/plugin-loader/src/PluginLoader.ml" 193 5715 5741
type(
  SetString.elt
)
ident(
  int_ref a "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5049
)
"src/ext/plugin-loader/src/PluginLoader.ml" 190 5565 5587 "src/ext/plugin-loader/src/PluginLoader.ml" 193 5715 5742
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 189 5532 5552 "src/ext/plugin-loader/src/PluginLoader.ml" 193 5715 5742
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 194 5744 5764 "src/ext/plugin-loader/src/PluginLoader.ml" 194 5744 5766
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 188 5508 5526 "src/ext/plugin-loader/src/PluginLoader.ml" 195 5767 5788
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 183 5298 5312 "src/ext/plugin-loader/src/PluginLoader.ml" 196 5789 5806
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 177 5080 5092 "src/ext/plugin-loader/src/PluginLoader.ml" 196 5789 5806
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5834 "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5838
type(
  string
)
ident(
  def base "src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5882 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
)
"src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5841 "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5866
type(
  SetString.elt -> string
)
ident(
  ext_ref Findlib.package_directory
)
"src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5867 "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5868
type(
  SetString.elt
)
ident(
  int_ref a "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5049
)
"src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5841 "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5868
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5882 "src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5901
type(
  SetString.elt -> unit
)
ident(
  int_ref add_findlib_package "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3190 "src/ext/plugin-loader/src/PluginLoader.ml" 93 3186 3209
)
"src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5902 "src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5903
type(
  SetString.elt
)
ident(
  int_ref a "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5048 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5049
)
"src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5882 "src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5903
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5916 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5924
type(
  (string -> string) -> string list -> string list
)
ident(
  ext_ref List.map
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5926 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5946
type(
  ?base:string -> ?explicit:bool -> string -> string
)
ident(
  ext_ref Findlib.resolve_path
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5948 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5952
type(
  string
)
ident(
  int_ref base "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5834 "src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5838
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5925 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5953
call(
  stack
)
type(
  string -> string
)
type(
  ?explicit:bool -> string -> string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5954 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5958
type(
  string list
)
ident(
  int_ref mods "src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5073 "src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5077
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5915 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5959
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5960 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5961
type(
  string list -> string list -> string list
)
ident(
  ext_ref Pervasives.( @ )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5963 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5966
type(
  SetString.elt list -> string list
)
ident(
  int_ref aux "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 4998 "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 5001
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5967 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5969
type(
  SetString.elt list
)
ident(
  int_ref tl "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5053 "src/ext/plugin-loader/src/PluginLoader.ml" 175 5038 5055
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5962 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5915 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
call(
  tail
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 199 5872 5882 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 198 5820 5830 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 176 5059 5069 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 173 5004 5010 "src/ext/plugin-loader/src/PluginLoader.ml" 200 5905 5970
type(
  SetString.elt list -> string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5987 "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5990
type(
  string list
)
ident(
  def res "src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6009 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
)
"src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5993 "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5996
type(
  SetString.elt list -> string list
)
ident(
  int_ref aux "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 4998 "src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 5001
)
"src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5997 "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 6001
type(
  SetString.elt list
)
ident(
  int_ref deps "src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4412 "src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4416
)
"src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5993 "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 6001
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6009 "src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6010
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3833 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3834
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6009 "src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6014
type(
  'a -> string -> unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6015 "src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6021
type(
  'a
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6023 "src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6030
type(
  (string -> string, unit, string) format -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6031 "src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6056
type(
  (string -> string, unit, string) format
)
"src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6066 "src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6079
type(
  string -> string list -> string
)
ident(
  ext_ref String.concat
)
"src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6080 "src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6084
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6085 "src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6088
type(
  string list
)
ident(
  int_ref res "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5987 "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5990
)
"src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6065 "src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6089
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6022 "src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6090
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6009 "src/ext/plugin-loader/src/PluginLoader.ml" 205 6057 6090
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6096 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
ident(
  int_ref res "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5987 "src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5990
)
"src/ext/plugin-loader/src/PluginLoader.ml" 204 6005 6009 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 203 5979 5983 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 172 4986 4990 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 162 4689 4693 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 157 4567 4571 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 152 4404 4408 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 149 4326 4330 "src/ext/plugin-loader/src/PluginLoader.ml" 206 6092 6099
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 208 6101 6108 "src/ext/plugin-loader/src/PluginLoader.ml" 208 6101 6109
type(
  exn
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6117 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
)
"src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6117 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6122
type(
  exn -> string list
)
ident(
  ext_ref Pervasives.raise
)
"src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6139 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6146
type(
  string
)
ident(
  int_ref package "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3835 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3842
)
"src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6148 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6149
type(
  exn
)
ident(
  int_ref e "src/ext/plugin-loader/src/PluginLoader.ml" 208 6101 6108 "src/ext/plugin-loader/src/PluginLoader.ml" 208 6101 6109
)
"src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6123 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6117 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 148 4320 4322 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 126 3845 3847 "src/ext/plugin-loader/src/PluginLoader.ml" 209 6113 6151
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6226 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6233
type(
  entry -> entry -> int
)
ident(
  def compare "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6280 "src/ext/plugin-loader/src/PluginLoader.ml" 218 6281 6288
)
"src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6234 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6236
type(
  entry
)
ident(
  def e1 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6237 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6280
)
"src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6237 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6239
type(
  entry
)
ident(
  def e2 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6250 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6280
)
"src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6250 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6264
type(
  String.t -> String.t -> int
)
ident(
  ext_ref String.compare
)
"src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6265 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6267
type(
  entry
)
ident(
  int_ref e1 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6234 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6236
)
"src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6265 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6272
type(
  String.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6273 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6275
type(
  entry
)
ident(
  int_ref e2 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6237 "src/ext/plugin-loader/src/PluginLoader.ml" 216 6216 6239
)
"src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6273 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6280
type(
  String.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6250 "src/ext/plugin-loader/src/PluginLoader.ml" 217 6242 6280
call(
  tail
)
type(
  int
)
"src/ext/plugin-loader/src/PluginLoader.ml" 213 6172 6174 "src/ext/plugin-loader/src/PluginLoader.ml" 218 6281 6289
call(
  stack
)
"src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6296 "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6300
type(
  [> `Debug | `Error | `Warning ] t -> SetEntry.elt list
)
ident(
  def list "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8388 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6301 "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6302
type(
  ([> `Debug | `Error | `Warning ] as 'a) t
)
ident(
  def t "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6307 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
)
"src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6311 "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6314
type(
  string list
)
ident(
  def lst "src/ext/plugin-loader/src/PluginLoader.ml" 223 6353 6355 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
)
"src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6317 "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6346
type(
  unit -> string list
)
ident(
  ext_ref Fl_package_base.list_packages
)
"src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6347 "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6349
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6317 "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6349
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 223 6353 6359 "src/ext/plugin-loader/src/PluginLoader.ml" 223 6353 6362
type(
  SetEntry.t
)
ident(
  def set "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8364 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
)
"src/ext/plugin-loader/src/PluginLoader.ml" 224 6365 6369 "src/ext/plugin-loader/src/PluginLoader.ml" 224 6365 6383
type(
  (SetEntry.t -> string -> SetEntry.t) ->
  SetEntry.t -> string list -> SetEntry.t
)
ident(
  ext_ref List.fold_left
)
"src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6395 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6398
type(
  SetEntry.t
)
ident(
  def acc "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8324
)
"src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6406
type(
  string
)
ident(
  def pkg_str "src/ext/plugin-loader/src/PluginLoader.ml" 226 6410 6419 "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8324
)
"src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6438 "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6441
type(
  Fl_package_base.package
)
ident(
  def pkg "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6488 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
)
"src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6444 "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6465
type(
  string -> Fl_package_base.package
)
ident(
  ext_ref Fl_package_base.query
)
"src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6466 "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6473
type(
  string
)
ident(
  int_ref pkg_str "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6406
)
"src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6444 "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6473
call(
  stack
)
type(
  Fl_package_base.package
)
"src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6492 "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6504
type(
  Fl_metascanner.pkg_definition list
)
ident(
  def package_defs "src/ext/plugin-loader/src/PluginLoader.ml" 229 6543 6554 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
)
"src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6507 "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6510
type(
  Fl_package_base.package
)
ident(
  int_ref pkg "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6438 "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6441
)
"src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6507 "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6539
type(
  Fl_metascanner.pkg_definition list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 229 6543 6558 "src/ext/plugin-loader/src/PluginLoader.ml" 229 6543 6571
type(
  string
)
ident(
  def plugin_system "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6666 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
)
"src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6587 "src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6608
type(
  string -> string list -> Fl_metascanner.pkg_definition list -> string
)
ident(
  ext_ref Fl_metascanner.lookup
)
"src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6609 "src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6624
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6625 "src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6627
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6628 "src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6640
type(
  Fl_metascanner.pkg_definition list
)
ident(
  int_ref package_defs "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6492 "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6504
)
"src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6587 "src/ext/plugin-loader/src/PluginLoader.ml" 230 6574 6640
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6670 "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6684
type(
  string -> string option
)
ident(
  def default_lookup "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6848 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
)
"src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6685 "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6688
type(
  string
)
ident(
  def var "src/ext/plugin-loader/src/PluginLoader.ml" 233 6691 6704 "src/ext/plugin-loader/src/PluginLoader.ml" 236 6803 6822
)
"src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6729 "src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6750
type(
  string -> string list -> Fl_metascanner.pkg_definition list -> string
)
ident(
  ext_ref Fl_metascanner.lookup
)
"src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6751 "src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6754
type(
  string
)
ident(
  int_ref var "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6685 "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6688
)
"src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6755 "src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6757
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6758 "src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6770
type(
  Fl_metascanner.pkg_definition list
)
ident(
  int_ref package_defs "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6492 "src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6504
)
"src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6728 "src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6771
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6723 "src/ext/plugin-loader/src/PluginLoader.ml" 234 6708 6771
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 235 6772 6790 "src/ext/plugin-loader/src/PluginLoader.ml" 235 6772 6799
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 236 6803 6818 "src/ext/plugin-loader/src/PluginLoader.ml" 236 6803 6822
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 233 6691 6704 "src/ext/plugin-loader/src/PluginLoader.ml" 236 6803 6822
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6852 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6870
type(
  string -> string -> string
)
ident(
  def default_lookup_val "src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7013 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
)
"src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6871 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6874
type(
  string
)
ident(
  def var "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6875 "src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6987
)
"src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6875 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6879
type(
  string
)
ident(
  def dflt "src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6895 "src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6987
)
"src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6901 "src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6915
type(
  string -> string option
)
ident(
  int_ref default_lookup "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6670 "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6684
)
"src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6916 "src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6919
type(
  string
)
ident(
  int_ref var "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6871 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6874
)
"src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6901 "src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6919
call(
  stack
)
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6947 "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6950
type(
  string
)
ident(
  def str "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6954 "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6957
)
"src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6942 "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6950
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6954 "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6957
type(
  string
)
ident(
  int_ref str "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6947 "src/ext/plugin-loader/src/PluginLoader.ml" 240 6925 6950
)
"src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6975 "src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6979
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6983 "src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6987
type(
  string
)
ident(
  int_ref dflt "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6875 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6879
)
"src/ext/plugin-loader/src/PluginLoader.ml" 239 6882 6895 "src/ext/plugin-loader/src/PluginLoader.ml" 241 6958 6987
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7016 "src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7029
type(
  string
)
ident(
  int_ref plugin_system "src/ext/plugin-loader/src/PluginLoader.ml" 229 6543 6558 "src/ext/plugin-loader/src/PluginLoader.ml" 229 6543 6571
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7030 "src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7031
type(
  string -> string -> bool
)
ident(
  ext_ref Pervasives.( = )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7032 "src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7033
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6301 "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6302
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7032 "src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7040
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7016 "src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7040
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 244 7052 7069 "src/ext/plugin-loader/src/PluginLoader.ml" 244 7052 7079
type(
  bool
)
ident(
  def deprecated "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7539 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8232
)
"src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7101 "src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7104
type(
  string
)
ident(
  def str "src/ext/plugin-loader/src/PluginLoader.ml" 248 7189 7204 "src/ext/plugin-loader/src/PluginLoader.ml" 255 7487 7509
)
"src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7124 "src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7142
type(
  string -> string -> string
)
ident(
  int_ref default_lookup_val "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6852 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6870
)
"src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7143 "src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7162
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7163 "src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7170
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7124 "src/ext/plugin-loader/src/PluginLoader.ml" 246 7107 7170
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 249 7208 7225 "src/ext/plugin-loader/src/PluginLoader.ml" 249 7208 7239
type(
  string -> bool
)
ident(
  ext_ref Pervasives.bool_of_string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 249 7208 7240 "src/ext/plugin-loader/src/PluginLoader.ml" 249 7208 7243
type(
  string
)
ident(
  int_ref str "src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7101 "src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7104
)
"src/ext/plugin-loader/src/PluginLoader.ml" 249 7208 7225 "src/ext/plugin-loader/src/PluginLoader.ml" 249 7208 7243
call(
  stack
)
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 250 7244 7281 "src/ext/plugin-loader/src/PluginLoader.ml" 250 7244 7282
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 250 7244 7264 "src/ext/plugin-loader/src/PluginLoader.ml" 250 7244 7282
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7303 "src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7304
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6301 "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6302
)
"src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7303 "src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7308
type(
  'a -> string -> unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7309 "src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7317
type(
  'a
)
"src/ext/plugin-loader/src/PluginLoader.ml" 252 7318 7338 "src/ext/plugin-loader/src/PluginLoader.ml" 252 7318 7345
type(
  (string -> string -> string, unit, string) format ->
  string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 252 7318 7346 "src/ext/plugin-loader/src/PluginLoader.ml" 253 7388 7450
type(
  (string -> string -> string, unit, string) format
)
"src/ext/plugin-loader/src/PluginLoader.ml" 254 7451 7473 "src/ext/plugin-loader/src/PluginLoader.ml" 254 7451 7480
type(
  string
)
ident(
  int_ref pkg_str "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6406
)
"src/ext/plugin-loader/src/PluginLoader.ml" 254 7451 7481 "src/ext/plugin-loader/src/PluginLoader.ml" 254 7451 7484
type(
  string
)
ident(
  int_ref str "src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7101 "src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7104
)
"src/ext/plugin-loader/src/PluginLoader.ml" 252 7318 7337 "src/ext/plugin-loader/src/PluginLoader.ml" 254 7451 7485
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7303 "src/ext/plugin-loader/src/PluginLoader.ml" 254 7451 7485
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 255 7487 7504 "src/ext/plugin-loader/src/PluginLoader.ml" 255 7487 7509
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 251 7286 7303 "src/ext/plugin-loader/src/PluginLoader.ml" 255 7487 7509
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 248 7189 7204 "src/ext/plugin-loader/src/PluginLoader.ml" 255 7487 7509
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 245 7082 7097 "src/ext/plugin-loader/src/PluginLoader.ml" 255 7487 7509
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7543 "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7548
type(
  entry
)
ident(
  def entry "src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7878 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8232
)
"src/ext/plugin-loader/src/PluginLoader.ml" 259 7568 7600 "src/ext/plugin-loader/src/PluginLoader.ml" 259 7568 7607
type(
  string
)
ident(
  int_ref pkg_str "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6406
)
"src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7633 "src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7651
type(
  string -> string -> string
)
ident(
  int_ref default_lookup_val "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6852 "src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6870
)
"src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7652 "src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7665
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7666 "src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7673
type(
  string
)
ident(
  int_ref pkg_str "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6406
)
"src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7633 "src/ext/plugin-loader/src/PluginLoader.ml" 260 7609 7673
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 261 7675 7703 "src/ext/plugin-loader/src/PluginLoader.ml" 261 7675 7717
type(
  string -> string option
)
ident(
  int_ref default_lookup "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6670 "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6684
)
"src/ext/plugin-loader/src/PluginLoader.ml" 261 7675 7718 "src/ext/plugin-loader/src/PluginLoader.ml" 261 7675 7735
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 261 7675 7703 "src/ext/plugin-loader/src/PluginLoader.ml" 261 7675 7735
call(
  stack
)
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 262 7737 7764 "src/ext/plugin-loader/src/PluginLoader.ml" 262 7737 7778
type(
  string -> string option
)
ident(
  int_ref default_lookup "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6670 "src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6684
)
"src/ext/plugin-loader/src/PluginLoader.ml" 262 7737 7779 "src/ext/plugin-loader/src/PluginLoader.ml" 262 7737 7788
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 262 7737 7764 "src/ext/plugin-loader/src/PluginLoader.ml" 262 7737 7788
call(
  stack
)
type(
  string option
)
"src/ext/plugin-loader/src/PluginLoader.ml" 263 7790 7820 "src/ext/plugin-loader/src/PluginLoader.ml" 263 7790 7830
type(
  bool
)
ident(
  int_ref deprecated "src/ext/plugin-loader/src/PluginLoader.ml" 244 7052 7069 "src/ext/plugin-loader/src/PluginLoader.ml" 244 7052 7079
)
"src/ext/plugin-loader/src/PluginLoader.ml" 258 7551 7566 "src/ext/plugin-loader/src/PluginLoader.ml" 264 7832 7848
type(
  entry
)
"src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7881 "src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7893
type(
  SetEntry.elt -> SetEntry.t -> bool
)
ident(
  ext_ref SetEntry.mem
)
"src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7894 "src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7899
type(
  SetEntry.elt
)
ident(
  int_ref entry "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7543 "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7548
)
"src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7900 "src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7903
type(
  SetEntry.t
)
ident(
  int_ref acc "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6395 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6398
)
"src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7881 "src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7903
call(
  stack
)
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7924 "src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7925
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6301 "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6302
)
"src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7924 "src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7929
type(
  'a -> string -> unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7930 "src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7938
type(
  'a
)
"src/ext/plugin-loader/src/PluginLoader.ml" 268 7939 7957 "src/ext/plugin-loader/src/PluginLoader.ml" 268 7939 7964
type(
  (string -> string -> string -> string, unit, string) format ->
  string -> string -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/ext/plugin-loader/src/PluginLoader.ml" 269 7965 7986 "src/ext/plugin-loader/src/PluginLoader.ml" 269 7965 7988
type(
  (string -> string -> string -> string, unit, string, string, string,
   string)
  format6 ->
  (string -> string -> string -> string, unit, string, string, string,
   string)
  format6
)
ident(
  int_ref f_ "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2087 "src/ext/plugin-loader/src/PluginLoader.ml" 40 2083 2089
)
"src/ext/plugin-loader/src/PluginLoader.ml" 269 7965 7989 "src/ext/plugin-loader/src/PluginLoader.ml" 270 8020 8082
type(
  (string -> string -> string -> string, unit, string, string, string,
   string)
  format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 269 7965 7985 "src/ext/plugin-loader/src/PluginLoader.ml" 270 8020 8083
call(
  stack
)
type(
  (string -> string -> string -> string, unit, string, string, string,
   string)
  format6
)
"src/ext/plugin-loader/src/PluginLoader.ml" 271 8084 8104 "src/ext/plugin-loader/src/PluginLoader.ml" 271 8084 8109
type(
  entry
)
ident(
  int_ref entry "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7543 "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7548
)
"src/ext/plugin-loader/src/PluginLoader.ml" 271 8084 8104 "src/ext/plugin-loader/src/PluginLoader.ml" 271 8084 8114
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 272 8115 8135 "src/ext/plugin-loader/src/PluginLoader.ml" 272 8115 8142
type(
  string
)
ident(
  int_ref pkg_str "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6399 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6406
)
"src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8163 "src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8166
type(
  Fl_package_base.package
)
ident(
  int_ref pkg "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6438 "src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6441
)
"src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8163 "src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8194
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 268 7939 7956 "src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8195
call(
  stack
)
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 267 7909 7924 "src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8195
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7878 "src/ext/plugin-loader/src/PluginLoader.ml" 273 8143 8195
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8210 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8222
type(
  SetEntry.elt -> SetEntry.t -> SetEntry.t
)
ident(
  ext_ref SetEntry.add
)
"src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8223 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8228
type(
  SetEntry.elt
)
ident(
  int_ref entry "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7543 "src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7548
)
"src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8229 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8232
type(
  SetEntry.t
)
ident(
  int_ref acc "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6395 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6398
)
"src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8210 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8232
call(
  stack
)
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 266 7865 7878 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8232
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 257 7526 7539 "src/ext/plugin-loader/src/PluginLoader.ml" 274 8197 8232
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7046 "src/ext/plugin-loader/src/PluginLoader.ml" 275 8233 8247
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 275 8233 8253 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
ident(
  int_ref acc "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6395 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6398
)
"src/ext/plugin-loader/src/PluginLoader.ml" 243 7002 7013 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 238 6837 6848 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 232 6655 6666 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 229 6543 6554 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 228 6477 6488 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 227 6423 6434 "src/ext/plugin-loader/src/PluginLoader.ml" 277 8276 8290
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 278 8291 8305 "src/ext/plugin-loader/src/PluginLoader.ml" 278 8291 8306
type(
  exn
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8321 "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8324
)
"src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8321 "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8324
type(
  SetEntry.t
)
ident(
  int_ref acc "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6395 "src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6398
)
"src/ext/plugin-loader/src/PluginLoader.ml" 226 6410 6419 "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8324
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 225 6384 6390 "src/ext/plugin-loader/src/PluginLoader.ml" 279 8310 8325
type(
  SetEntry.t -> string -> SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 280 8326 8332 "src/ext/plugin-loader/src/PluginLoader.ml" 280 8326 8346
type(
  SetEntry.t
)
ident(
  ext_ref SetEntry.empty
)
"src/ext/plugin-loader/src/PluginLoader.ml" 281 8347 8353 "src/ext/plugin-loader/src/PluginLoader.ml" 281 8347 8356
type(
  string list
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6311 "src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6314
)
"src/ext/plugin-loader/src/PluginLoader.ml" 224 6365 6369 "src/ext/plugin-loader/src/PluginLoader.ml" 281 8347 8356
call(
  stack
)
type(
  SetEntry.t
)
"src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8364 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8381
type(
  SetEntry.t -> SetEntry.elt list
)
ident(
  ext_ref SetEntry.elements
)
"src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8382 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
type(
  SetEntry.t
)
ident(
  int_ref set "src/ext/plugin-loader/src/PluginLoader.ml" 223 6353 6359 "src/ext/plugin-loader/src/PluginLoader.ml" 223 6353 6362
)
"src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8364 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
call(
  tail
)
type(
  SetEntry.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 223 6353 6355 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
type(
  SetEntry.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 222 6305 6307 "src/ext/plugin-loader/src/PluginLoader.ml" 283 8362 8385
type(
  SetEntry.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8392 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8396
type(
  [> `Debug | `Error | `Warning ] t -> string -> unit
)
ident(
  def load "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705 "src/ext/plugin-loader/src/PluginLoader.ml" 1 0 -1
)
"src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8397 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8398
type(
  ([> `Debug | `Error | `Warning ] as 'a) t
)
ident(
  def t "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8399 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
)
"src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8399 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8401
type(
  string
)
ident(
  def nm "src/ext/plugin-loader/src/PluginLoader.ml" 288 8436 8438 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
)
"src/ext/plugin-loader/src/PluginLoader.ml" 288 8436 8442 "src/ext/plugin-loader/src/PluginLoader.ml" 288 8436 8447
type(
  SetEntry.elt
)
ident(
  def entry "src/ext/plugin-loader/src/PluginLoader.ml" 294 8567 8569 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8464 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8473
type(
  (SetEntry.elt -> bool) -> SetEntry.elt list -> SetEntry.elt
)
ident(
  ext_ref List.find
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8479 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8480
type(
  SetEntry.elt
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8484 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8495
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8484 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8485
type(
  SetEntry.elt
)
ident(
  int_ref e "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8479 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8480
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8484 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8490
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8491 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8492
type(
  string -> string -> bool
)
ident(
  ext_ref Pervasives.( = )
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8493 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8495
type(
  string
)
ident(
  int_ref nm "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8399 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8401
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8484 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8495
type(
  bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8474 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8496
type(
  SetEntry.elt -> bool
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8498 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8502
type(
  'a t -> SetEntry.elt list
)
ident(
  int_ref list "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6296 "src/ext/plugin-loader/src/PluginLoader.ml" 221 6292 6300
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8503 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8504
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8397 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8398
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8497 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8505
call(
  stack
)
type(
  SetEntry.elt list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8464 "src/ext/plugin-loader/src/PluginLoader.ml" 290 8458 8505
call(
  stack
)
type(
  SetEntry.elt
)
"src/ext/plugin-loader/src/PluginLoader.ml" 291 8506 8515 "src/ext/plugin-loader/src/PluginLoader.ml" 291 8506 8524
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8534 "src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8539
type(
  exn -> SetEntry.elt
)
ident(
  ext_ref Pervasives.raise
)
"src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8558 "src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8560
type(
  string
)
ident(
  int_ref nm "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8399 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8401
)
"src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8540 "src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8561
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8534 "src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8561
type(
  SetEntry.elt
)
"src/ext/plugin-loader/src/PluginLoader.ml" 289 8450 8454 "src/ext/plugin-loader/src/PluginLoader.ml" 292 8528 8561
type(
  SetEntry.elt
)
"src/ext/plugin-loader/src/PluginLoader.ml" 294 8567 8573 "src/ext/plugin-loader/src/PluginLoader.ml" 294 8567 8576
type(
  string list
)
ident(
  def lst "src/ext/plugin-loader/src/PluginLoader.ml" 297 8619 8621 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
)
"src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8583 "src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8592
type(
  'a t -> string -> string list
)
ident(
  int_ref findfiles "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3823 "src/ext/plugin-loader/src/PluginLoader.ml" 125 3819 3832
)
"src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8593 "src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8594
type(
  'a t
)
ident(
  int_ref t "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8397 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8398
)
"src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8595 "src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8600
type(
  SetEntry.elt
)
ident(
  int_ref entry "src/ext/plugin-loader/src/PluginLoader.ml" 288 8436 8442 "src/ext/plugin-loader/src/PluginLoader.ml" 288 8436 8447
)
"src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8595 "src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8613
type(
  string
)
"src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8583 "src/ext/plugin-loader/src/PluginLoader.ml" 295 8579 8613
call(
  stack
)
type(
  string list
)
"src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8629 "src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8638
type(
  (string -> unit) -> string list -> unit
)
ident(
  ext_ref List.iter
)
"src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8639 "src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8655
type(
  string -> unit
)
ident(
  ext_ref Dynlink.loadfile
)
"src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8656 "src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8659
type(
  string list
)
ident(
  int_ref lst "src/ext/plugin-loader/src/PluginLoader.ml" 294 8567 8573 "src/ext/plugin-loader/src/PluginLoader.ml" 294 8567 8576
)
"src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8629 "src/ext/plugin-loader/src/PluginLoader.ml" 298 8625 8659
call(
  stack
)
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 299 8660 8667 "src/ext/plugin-loader/src/PluginLoader.ml" 299 8660 8668
type(
  exn
)
ident(
  def e "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8676 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
)
"src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8676 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8681
type(
  exn -> unit
)
ident(
  ext_ref Pervasives.raise
)
"src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8698 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8700
type(
  string
)
ident(
  int_ref nm "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8399 "src/ext/plugin-loader/src/PluginLoader.ml" 286 8388 8401
)
"src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8702 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8703
type(
  exn
)
ident(
  int_ref e "src/ext/plugin-loader/src/PluginLoader.ml" 299 8660 8667 "src/ext/plugin-loader/src/PluginLoader.ml" 299 8660 8668
)
"src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8682 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
type(
  exn
)
"src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8676 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 297 8619 8621 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 294 8567 8569 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
type(
  unit
)
"src/ext/plugin-loader/src/PluginLoader.ml" 288 8436 8438 "src/ext/plugin-loader/src/PluginLoader.ml" 300 8672 8705
type(
  unit
)