This file is indexed.

/usr/lib/ocaml/sexplib/lexer.annot is in libsexplib-camlp4-dev 113.00.00-1.

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
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
"lib/lexer.mll" 7 106 112 "lib/lexer.mll" 7 106 130
type(
  char -> char
)
ident(
  def char_for_backslash "lib/lexer.mll" 14 236 238 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 8 142 148 "lib/lexer.mll" 8 142 151
type(
  char
)
"lib/lexer.mll" 8 142 155 "lib/lexer.mll" 8 142 161
type(
  char
)
"lib/lexer.mll" 9 162 168 "lib/lexer.mll" 9 162 171
type(
  char
)
"lib/lexer.mll" 9 162 175 "lib/lexer.mll" 9 162 181
type(
  char
)
"lib/lexer.mll" 10 182 188 "lib/lexer.mll" 10 182 191
type(
  char
)
"lib/lexer.mll" 10 182 195 "lib/lexer.mll" 10 182 201
type(
  char
)
"lib/lexer.mll" 11 202 208 "lib/lexer.mll" 11 202 211
type(
  char
)
"lib/lexer.mll" 11 202 215 "lib/lexer.mll" 11 202 221
type(
  char
)
"lib/lexer.mll" 12 222 228 "lib/lexer.mll" 12 222 229
type(
  char
)
ident(
  def c "lib/lexer.mll" 12 222 233 "lib/lexer.mll" 12 222 234
)
"lib/lexer.mll" 12 222 233 "lib/lexer.mll" 12 222 234
type(
  char
)
ident(
  int_ref c "lib/lexer.mll" 12 222 228 "lib/lexer.mll" 12 222 229
)
"lib/lexer.mll" 7 106 133 "lib/lexer.mll" 12 222 234
type(
  char -> char
)
"lib/lexer.mll" 14 236 242 "lib/lexer.mll" 14 236 244
type(
  char
)
ident(
  def lf "lib/lexer.mll" 16 255 257 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 14 236 247 "lib/lexer.mll" 14 236 253
type(
  char
)
"lib/lexer.mll" 16 255 261 "lib/lexer.mll" 16 255 269
type(
  char -> char -> char -> int
)
ident(
  def dec_code "lib/lexer.mll" 19 361 363 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 16 255 270 "lib/lexer.mll" 16 255 272
type(
  char
)
ident(
  def c1 "lib/lexer.mll" 16 255 273 "lib/lexer.mll" 17 281 359
)
"lib/lexer.mll" 16 255 273 "lib/lexer.mll" 16 255 275
type(
  char
)
ident(
  def c2 "lib/lexer.mll" 16 255 276 "lib/lexer.mll" 17 281 359
)
"lib/lexer.mll" 16 255 276 "lib/lexer.mll" 16 255 278
type(
  char
)
ident(
  def c3 "lib/lexer.mll" 17 281 285 "lib/lexer.mll" 17 281 359
)
"lib/lexer.mll" 17 281 285 "lib/lexer.mll" 17 281 288
type(
  int
)
"lib/lexer.mll" 17 281 289 "lib/lexer.mll" 17 281 290
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( * )
)
"lib/lexer.mll" 17 281 292 "lib/lexer.mll" 17 281 301
type(
  char -> int
)
ident(
  ext_ref Char.code
)
"lib/lexer.mll" 17 281 302 "lib/lexer.mll" 17 281 304
type(
  char
)
ident(
  int_ref c1 "lib/lexer.mll" 16 255 270 "lib/lexer.mll" 16 255 272
)
"lib/lexer.mll" 17 281 292 "lib/lexer.mll" 17 281 304
type(
  int
)
"lib/lexer.mll" 17 281 305 "lib/lexer.mll" 17 281 306
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 17 281 307 "lib/lexer.mll" 17 281 309
type(
  int
)
"lib/lexer.mll" 17 281 291 "lib/lexer.mll" 17 281 310
type(
  int
)
"lib/lexer.mll" 17 281 285 "lib/lexer.mll" 17 281 310
type(
  int
)
"lib/lexer.mll" 17 281 311 "lib/lexer.mll" 17 281 312
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.mll" 17 281 313 "lib/lexer.mll" 17 281 315
type(
  int
)
"lib/lexer.mll" 17 281 316 "lib/lexer.mll" 17 281 317
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( * )
)
"lib/lexer.mll" 17 281 319 "lib/lexer.mll" 17 281 328
type(
  char -> int
)
ident(
  ext_ref Char.code
)
"lib/lexer.mll" 17 281 329 "lib/lexer.mll" 17 281 331
type(
  char
)
ident(
  int_ref c2 "lib/lexer.mll" 16 255 273 "lib/lexer.mll" 16 255 275
)
"lib/lexer.mll" 17 281 319 "lib/lexer.mll" 17 281 331
type(
  int
)
"lib/lexer.mll" 17 281 332 "lib/lexer.mll" 17 281 333
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 17 281 334 "lib/lexer.mll" 17 281 336
type(
  int
)
"lib/lexer.mll" 17 281 318 "lib/lexer.mll" 17 281 337
type(
  int
)
"lib/lexer.mll" 17 281 313 "lib/lexer.mll" 17 281 337
type(
  int
)
"lib/lexer.mll" 17 281 285 "lib/lexer.mll" 17 281 337
type(
  int
)
"lib/lexer.mll" 17 281 338 "lib/lexer.mll" 17 281 339
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.mll" 17 281 341 "lib/lexer.mll" 17 281 350
type(
  char -> int
)
ident(
  ext_ref Char.code
)
"lib/lexer.mll" 17 281 351 "lib/lexer.mll" 17 281 353
type(
  char
)
ident(
  int_ref c3 "lib/lexer.mll" 16 255 276 "lib/lexer.mll" 16 255 278
)
"lib/lexer.mll" 17 281 341 "lib/lexer.mll" 17 281 353
type(
  int
)
"lib/lexer.mll" 17 281 354 "lib/lexer.mll" 17 281 355
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 17 281 356 "lib/lexer.mll" 17 281 358
type(
  int
)
"lib/lexer.mll" 17 281 340 "lib/lexer.mll" 17 281 359
type(
  int
)
"lib/lexer.mll" 17 281 285 "lib/lexer.mll" 17 281 359
type(
  int
)
"lib/lexer.mll" 19 361 367 "lib/lexer.mll" 19 361 375
type(
  char -> char -> int
)
ident(
  def hex_code "lib/lexer.mll" 32 672 674 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 19 361 376 "lib/lexer.mll" 19 361 378
type(
  char
)
ident(
  def c1 "lib/lexer.mll" 19 361 379 "lib/lexer.mll" 30 650 670
)
"lib/lexer.mll" 19 361 379 "lib/lexer.mll" 19 361 381
type(
  char
)
ident(
  def c2 "lib/lexer.mll" 20 384 388 "lib/lexer.mll" 30 650 670
)
"lib/lexer.mll" 20 384 392 "lib/lexer.mll" 20 384 394
type(
  int
)
ident(
  def d1 "lib/lexer.mll" 21 413 417 "lib/lexer.mll" 30 650 670
)
"lib/lexer.mll" 20 384 397 "lib/lexer.mll" 20 384 406
type(
  char -> int
)
ident(
  ext_ref Char.code
)
"lib/lexer.mll" 20 384 407 "lib/lexer.mll" 20 384 409
type(
  char
)
ident(
  int_ref c1 "lib/lexer.mll" 19 361 376 "lib/lexer.mll" 19 361 378
)
"lib/lexer.mll" 20 384 397 "lib/lexer.mll" 20 384 409
type(
  int
)
"lib/lexer.mll" 21 413 421 "lib/lexer.mll" 21 413 425
type(
  int
)
ident(
  def val1 "lib/lexer.mll" 25 517 521 "lib/lexer.mll" 30 650 670
)
"lib/lexer.mll" 22 428 437 "lib/lexer.mll" 22 428 439
type(
  int
)
ident(
  int_ref d1 "lib/lexer.mll" 20 384 392 "lib/lexer.mll" 20 384 394
)
"lib/lexer.mll" 22 428 440 "lib/lexer.mll" 22 428 442
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( >= )
)
"lib/lexer.mll" 22 428 443 "lib/lexer.mll" 22 428 445
type(
  int
)
"lib/lexer.mll" 22 428 437 "lib/lexer.mll" 22 428 445
type(
  bool
)
"lib/lexer.mll" 22 428 451 "lib/lexer.mll" 22 428 453
type(
  int
)
ident(
  int_ref d1 "lib/lexer.mll" 20 384 392 "lib/lexer.mll" 20 384 394
)
"lib/lexer.mll" 22 428 454 "lib/lexer.mll" 22 428 455
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 22 428 456 "lib/lexer.mll" 22 428 458
type(
  int
)
"lib/lexer.mll" 22 428 451 "lib/lexer.mll" 22 428 458
type(
  int
)
"lib/lexer.mll" 23 459 473 "lib/lexer.mll" 23 459 475
type(
  int
)
ident(
  int_ref d1 "lib/lexer.mll" 20 384 392 "lib/lexer.mll" 20 384 394
)
"lib/lexer.mll" 23 459 476 "lib/lexer.mll" 23 459 478
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( >= )
)
"lib/lexer.mll" 23 459 479 "lib/lexer.mll" 23 459 481
type(
  int
)
"lib/lexer.mll" 23 459 473 "lib/lexer.mll" 23 459 481
type(
  bool
)
"lib/lexer.mll" 23 459 487 "lib/lexer.mll" 23 459 489
type(
  int
)
ident(
  int_ref d1 "lib/lexer.mll" 20 384 392 "lib/lexer.mll" 20 384 394
)
"lib/lexer.mll" 23 459 490 "lib/lexer.mll" 23 459 491
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 23 459 492 "lib/lexer.mll" 23 459 494
type(
  int
)
"lib/lexer.mll" 23 459 487 "lib/lexer.mll" 23 459 494
type(
  int
)
"lib/lexer.mll" 24 495 506 "lib/lexer.mll" 24 495 508
type(
  int
)
ident(
  int_ref d1 "lib/lexer.mll" 20 384 392 "lib/lexer.mll" 20 384 394
)
"lib/lexer.mll" 24 495 509 "lib/lexer.mll" 24 495 510
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 24 495 511 "lib/lexer.mll" 24 495 513
type(
  int
)
"lib/lexer.mll" 24 495 506 "lib/lexer.mll" 24 495 513
type(
  int
)
"lib/lexer.mll" 23 459 470 "lib/lexer.mll" 24 495 513
type(
  int
)
"lib/lexer.mll" 22 428 434 "lib/lexer.mll" 24 495 513
type(
  int
)
"lib/lexer.mll" 25 517 525 "lib/lexer.mll" 25 517 527
type(
  int
)
ident(
  def d2 "lib/lexer.mll" 26 546 550 "lib/lexer.mll" 30 650 670
)
"lib/lexer.mll" 25 517 530 "lib/lexer.mll" 25 517 539
type(
  char -> int
)
ident(
  ext_ref Char.code
)
"lib/lexer.mll" 25 517 540 "lib/lexer.mll" 25 517 542
type(
  char
)
ident(
  int_ref c2 "lib/lexer.mll" 19 361 379 "lib/lexer.mll" 19 361 381
)
"lib/lexer.mll" 25 517 530 "lib/lexer.mll" 25 517 542
type(
  int
)
"lib/lexer.mll" 26 546 554 "lib/lexer.mll" 26 546 558
type(
  int
)
ident(
  def val2 "lib/lexer.mll" 30 650 654 "lib/lexer.mll" 30 650 670
)
"lib/lexer.mll" 27 561 570 "lib/lexer.mll" 27 561 572
type(
  int
)
ident(
  int_ref d2 "lib/lexer.mll" 25 517 525 "lib/lexer.mll" 25 517 527
)
"lib/lexer.mll" 27 561 573 "lib/lexer.mll" 27 561 575
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( >= )
)
"lib/lexer.mll" 27 561 576 "lib/lexer.mll" 27 561 578
type(
  int
)
"lib/lexer.mll" 27 561 570 "lib/lexer.mll" 27 561 578
type(
  bool
)
"lib/lexer.mll" 27 561 584 "lib/lexer.mll" 27 561 586
type(
  int
)
ident(
  int_ref d2 "lib/lexer.mll" 25 517 525 "lib/lexer.mll" 25 517 527
)
"lib/lexer.mll" 27 561 587 "lib/lexer.mll" 27 561 588
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 27 561 589 "lib/lexer.mll" 27 561 591
type(
  int
)
"lib/lexer.mll" 27 561 584 "lib/lexer.mll" 27 561 591
type(
  int
)
"lib/lexer.mll" 28 592 606 "lib/lexer.mll" 28 592 608
type(
  int
)
ident(
  int_ref d2 "lib/lexer.mll" 25 517 525 "lib/lexer.mll" 25 517 527
)
"lib/lexer.mll" 28 592 609 "lib/lexer.mll" 28 592 611
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( >= )
)
"lib/lexer.mll" 28 592 612 "lib/lexer.mll" 28 592 614
type(
  int
)
"lib/lexer.mll" 28 592 606 "lib/lexer.mll" 28 592 614
type(
  bool
)
"lib/lexer.mll" 28 592 620 "lib/lexer.mll" 28 592 622
type(
  int
)
ident(
  int_ref d2 "lib/lexer.mll" 25 517 525 "lib/lexer.mll" 25 517 527
)
"lib/lexer.mll" 28 592 623 "lib/lexer.mll" 28 592 624
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 28 592 625 "lib/lexer.mll" 28 592 627
type(
  int
)
"lib/lexer.mll" 28 592 620 "lib/lexer.mll" 28 592 627
type(
  int
)
"lib/lexer.mll" 29 628 639 "lib/lexer.mll" 29 628 641
type(
  int
)
ident(
  int_ref d2 "lib/lexer.mll" 25 517 525 "lib/lexer.mll" 25 517 527
)
"lib/lexer.mll" 29 628 642 "lib/lexer.mll" 29 628 643
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 29 628 644 "lib/lexer.mll" 29 628 646
type(
  int
)
"lib/lexer.mll" 29 628 639 "lib/lexer.mll" 29 628 646
type(
  int
)
"lib/lexer.mll" 28 592 603 "lib/lexer.mll" 29 628 646
type(
  int
)
"lib/lexer.mll" 27 561 567 "lib/lexer.mll" 29 628 646
type(
  int
)
"lib/lexer.mll" 30 650 654 "lib/lexer.mll" 30 650 658
type(
  int
)
ident(
  int_ref val1 "lib/lexer.mll" 21 413 421 "lib/lexer.mll" 21 413 425
)
"lib/lexer.mll" 30 650 659 "lib/lexer.mll" 30 650 660
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( * )
)
"lib/lexer.mll" 30 650 661 "lib/lexer.mll" 30 650 663
type(
  int
)
"lib/lexer.mll" 30 650 654 "lib/lexer.mll" 30 650 663
type(
  int
)
"lib/lexer.mll" 30 650 664 "lib/lexer.mll" 30 650 665
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.mll" 30 650 666 "lib/lexer.mll" 30 650 670
type(
  int
)
ident(
  int_ref val2 "lib/lexer.mll" 26 546 554 "lib/lexer.mll" 26 546 558
)
"lib/lexer.mll" 30 650 654 "lib/lexer.mll" 30 650 670
type(
  int
)
"lib/lexer.mll" 26 546 550 "lib/lexer.mll" 30 650 670
type(
  int
)
"lib/lexer.mll" 25 517 521 "lib/lexer.mll" 30 650 670
type(
  int
)
"lib/lexer.mll" 21 413 417 "lib/lexer.mll" 30 650 670
type(
  int
)
"lib/lexer.mll" 20 384 388 "lib/lexer.mll" 30 650 670
type(
  int
)
"lib/lexer.mll" 32 672 678 "lib/lexer.mll" 32 672 691
type(
  Lexing.lexbuf -> int -> unit
)
ident(
  def found_newline "lib/lexer.mll" 41 939 941 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 32 672 695 "lib/lexer.mll" 32 672 705
type(
  Lexing.position
)
ident(
  def lex_curr_p "lib/lexer.mll" 32 672 722 "lib/lexer.mll" 38 876 883
)
"lib/lexer.mll" 32 672 693 "lib/lexer.mll" 32 672 710
type(
  Lexing.lexbuf
)
"lib/lexer.mll" 32 672 714 "lib/lexer.mll" 32 672 720
ident(
  def lexbuf "lib/lexer.mll" 32 672 722 "lib/lexer.mll" 38 876 883
)
"lib/lexer.mll" 32 672 692 "lib/lexer.mll" 32 672 721
type(
  Lexing.lexbuf
)
"lib/lexer.mll" 32 672 722 "lib/lexer.mll" 32 672 726
type(
  int
)
ident(
  def diff "lib/lexer.mll" 33 729 733 "lib/lexer.mll" 38 876 883
)
"lib/lexer.mll" 33 729 733 "lib/lexer.mll" 33 729 739
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.mll" 32 672 692 "lib/lexer.mll" 32 672 721
)
"lib/lexer.mll" 35 762 770 "lib/lexer.mll" 35 762 780
type(
  Lexing.position
)
ident(
  int_ref lex_curr_p "lib/lexer.mll" 32 672 695 "lib/lexer.mll" 32 672 705
)
"lib/lexer.mll" 36 786 805 "lib/lexer.mll" 36 786 815
type(
  Lexing.position
)
ident(
  int_ref lex_curr_p "lib/lexer.mll" 32 672 695 "lib/lexer.mll" 32 672 705
)
"lib/lexer.mll" 36 786 805 "lib/lexer.mll" 36 786 824
type(
  int
)
"lib/lexer.mll" 36 786 825 "lib/lexer.mll" 36 786 826
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.mll" 36 786 827 "lib/lexer.mll" 36 786 828
type(
  int
)
"lib/lexer.mll" 36 786 805 "lib/lexer.mll" 36 786 828
type(
  int
)
"lib/lexer.mll" 37 830 848 "lib/lexer.mll" 37 830 858
type(
  Lexing.position
)
ident(
  int_ref lex_curr_p "lib/lexer.mll" 32 672 695 "lib/lexer.mll" 32 672 705
)
"lib/lexer.mll" 37 830 848 "lib/lexer.mll" 37 830 867
type(
  int
)
"lib/lexer.mll" 37 830 868 "lib/lexer.mll" 37 830 869
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 37 830 870 "lib/lexer.mll" 37 830 874
type(
  int
)
ident(
  int_ref diff "lib/lexer.mll" 32 672 722 "lib/lexer.mll" 32 672 726
)
"lib/lexer.mll" 37 830 848 "lib/lexer.mll" 37 830 874
type(
  int
)
"lib/lexer.mll" 34 754 760 "lib/lexer.mll" 38 876 883
type(
  Lexing.position
)
"lib/lexer.mll" 33 729 733 "lib/lexer.mll" 38 876 883
type(
  unit
)
"lib/lexer.mll" 41 939 945 "lib/lexer.mll" 41 939 955
type(
  Lexing.lexbuf -> int
)
ident(
  def lexeme_len "lib/lexer.mll" 43 1023 1025 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 41 939 958 "lib/lexer.mll" 41 939 971
type(
  int
)
ident(
  def lex_start_pos "lib/lexer.mll" 41 939 993 "lib/lexer.mll" 41 939 1021
)
"lib/lexer.mll" 41 939 973 "lib/lexer.mll" 41 939 985
type(
  int
)
ident(
  def lex_curr_pos "lib/lexer.mll" 41 939 993 "lib/lexer.mll" 41 939 1021
)
"lib/lexer.mll" 41 939 956 "lib/lexer.mll" 41 939 990
type(
  Lexing.lexbuf
)
"lib/lexer.mll" 41 939 993 "lib/lexer.mll" 41 939 1005
type(
  int
)
ident(
  int_ref lex_curr_pos "lib/lexer.mll" 41 939 973 "lib/lexer.mll" 41 939 985
)
"lib/lexer.mll" 41 939 1006 "lib/lexer.mll" 41 939 1007
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 41 939 1008 "lib/lexer.mll" 41 939 1021
type(
  int
)
ident(
  int_ref lex_start_pos "lib/lexer.mll" 41 939 958 "lib/lexer.mll" 41 939 971
)
"lib/lexer.mll" 41 939 993 "lib/lexer.mll" 41 939 1021
type(
  int
)
"lib/lexer.mll" 43 1023 1029 "lib/lexer.mll" 43 1023 1041
type(
  Lexing.lexbuf -> string -> 'a
)
ident(
  def main_failure "lib/lexer.mll" 52 1284 1286 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 43 1023 1042 "lib/lexer.mll" 43 1023 1048
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.mll" 43 1023 1049 "lib/lexer.mll" 50 1266 1282
)
"lib/lexer.mll" 43 1023 1049 "lib/lexer.mll" 43 1023 1052
type(
  string
)
ident(
  def msg "lib/lexer.mll" 44 1055 1059 "lib/lexer.mll" 50 1266 1282
)
"lib/lexer.mll" 44 1055 1065 "lib/lexer.mll" 44 1055 1073
type(
  int
)
ident(
  def pos_lnum "lib/lexer.mll" 45 1137 1141 "lib/lexer.mll" 50 1266 1282
)
"lib/lexer.mll" 44 1055 1075 "lib/lexer.mll" 44 1055 1082
type(
  int
)
ident(
  def pos_bol "lib/lexer.mll" 45 1137 1141 "lib/lexer.mll" 50 1266 1282
)
"lib/lexer.mll" 44 1055 1084 "lib/lexer.mll" 44 1055 1092
type(
  int
)
ident(
  def pos_cnum "lib/lexer.mll" 45 1137 1141 "lib/lexer.mll" 50 1266 1282
)
"lib/lexer.mll" 44 1055 1106 "lib/lexer.mll" 44 1055 1107
type(
  string
)
"lib/lexer.mll" 44 1055 1063 "lib/lexer.mll" 44 1055 1109
type(
  Lexing.position
)
"lib/lexer.mll" 44 1055 1112 "lib/lexer.mll" 44 1055 1126
type(
  Lexing.lexbuf -> Lexing.position
)
ident(
  ext_ref Lexing.lexeme_start_p
)
"lib/lexer.mll" 44 1055 1127 "lib/lexer.mll" 44 1055 1133
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.mll" 43 1023 1042 "lib/lexer.mll" 43 1023 1048
)
"lib/lexer.mll" 44 1055 1112 "lib/lexer.mll" 44 1055 1133
call(
  stack
)
type(
  Lexing.position
)
"lib/lexer.mll" 45 1137 1145 "lib/lexer.mll" 45 1137 1148
type(
  string
)
ident(
  def msg "lib/lexer.mll" 50 1266 1270 "lib/lexer.mll" 50 1266 1282
)
"lib/lexer.mll" 46 1151 1157 "lib/lexer.mll" 46 1151 1164
type(
  (string -> int -> int -> string, unit, string) format ->
  string -> int -> int -> string
)
ident(
  ext_ref Printf.sprintf
)
"lib/lexer.mll" 47 1165 1173 "lib/lexer.mll" 47 1165 1216
type(
  (string -> int -> int -> string, unit, string) format
)
"lib/lexer.mll" 48 1217 1225 "lib/lexer.mll" 48 1217 1228
type(
  string
)
ident(
  int_ref msg "lib/lexer.mll" 43 1023 1049 "lib/lexer.mll" 43 1023 1052
)
"lib/lexer.mll" 48 1217 1229 "lib/lexer.mll" 48 1217 1237
type(
  int
)
ident(
  int_ref pos_lnum "lib/lexer.mll" 44 1055 1065 "lib/lexer.mll" 44 1055 1073
)
"lib/lexer.mll" 48 1217 1239 "lib/lexer.mll" 48 1217 1247
type(
  int
)
ident(
  int_ref pos_cnum "lib/lexer.mll" 44 1055 1084 "lib/lexer.mll" 44 1055 1092
)
"lib/lexer.mll" 48 1217 1248 "lib/lexer.mll" 48 1217 1249
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 48 1217 1250 "lib/lexer.mll" 48 1217 1257
type(
  int
)
ident(
  int_ref pos_bol "lib/lexer.mll" 44 1055 1075 "lib/lexer.mll" 44 1055 1082
)
"lib/lexer.mll" 48 1217 1238 "lib/lexer.mll" 48 1217 1258
type(
  int
)
"lib/lexer.mll" 46 1151 1157 "lib/lexer.mll" 48 1217 1258
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 50 1266 1270 "lib/lexer.mll" 50 1266 1278
type(
  string -> 'a
)
ident(
  ext_ref Pervasives.failwith
)
"lib/lexer.mll" 50 1266 1279 "lib/lexer.mll" 50 1266 1282
type(
  string
)
ident(
  int_ref msg "lib/lexer.mll" 45 1137 1145 "lib/lexer.mll" 45 1137 1148
)
"lib/lexer.mll" 50 1266 1270 "lib/lexer.mll" 50 1266 1282
call(
  tail
)
type(
  'a
)
"lib/lexer.mll" 45 1137 1141 "lib/lexer.mll" 50 1266 1282
type(
  'a
)
"lib/lexer.mll" 44 1055 1059 "lib/lexer.mll" 50 1266 1282
type(
  'a
)
"lib/lexer.ml" 83 2189 2193 "lib/lexer.ml" 83 2189 2211
type(
  Lexing.lex_tables
)
ident(
  def __ocaml_lex_tables "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 85 2237 2240 "lib/lexer.ml" 93 2797 2802
type(
  string
)
"lib/lexer.ml" 95 2828 2831 "lib/lexer.ml" 103 3388 3393
type(
  string
)
"lib/lexer.ml" 105 3419 3422 "lib/lexer.ml" 113 3979 3984
type(
  string
)
"lib/lexer.ml" 115 4008 4011 "lib/lexer.ml" 229 11988 12001
type(
  string
)
"lib/lexer.ml" 231 12025 12028 "lib/lexer.ml" 345 20005 20018
type(
  string
)
"lib/lexer.ml" 347 20046 20049 "lib/lexer.ml" 347 20046 20051
type(
  string
)
"lib/lexer.ml" 349 20082 20085 "lib/lexer.ml" 349 20082 20087
type(
  string
)
"lib/lexer.ml" 351 20118 20121 "lib/lexer.ml" 351 20118 20123
type(
  string
)
"lib/lexer.ml" 353 20152 20155 "lib/lexer.ml" 353 20152 20157
type(
  string
)
"lib/lexer.ml" 355 20186 20189 "lib/lexer.ml" 355 20186 20191
type(
  string
)
"lib/lexer.ml" 357 20214 20217 "lib/lexer.ml" 357 20214 20219
type(
  string
)
"lib/lexer.ml" 83 2189 2214 "lib/lexer.ml" 358 20221 20222
type(
  Lexing.lex_tables
)
"lib/lexer.ml" 360 20224 20232 "lib/lexer.ml" 360 20224 20236
type(
  X.Token.s
)
ident(
  def main "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 360 20224 20237 "lib/lexer.ml" 360 20224 20240
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.ml" 360 20224 20241 "lib/lexer.ml" 361 20250 20287
)
"lib/lexer.ml" 360 20224 20241 "lib/lexer.ml" 360 20224 20247
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.ml" 361 20250 20254 "lib/lexer.ml" 361 20250 20287
)
"lib/lexer.ml" 361 20250 20254 "lib/lexer.ml" 361 20250 20274
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> int -> X.Token.t
)
ident(
  int_ref __ocaml_lex_main_rec "lib/lexer.ml" 362 20288 20292 "lib/lexer.ml" 362 20288 20312
)
"lib/lexer.ml" 361 20250 20275 "lib/lexer.ml" 361 20250 20278
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 360 20224 20237 "lib/lexer.ml" 360 20224 20240
)
"lib/lexer.ml" 361 20250 20279 "lib/lexer.ml" 361 20250 20285
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 360 20224 20241 "lib/lexer.ml" 360 20224 20247
)
"lib/lexer.ml" 361 20250 20286 "lib/lexer.ml" 361 20250 20287
type(
  int
)
"lib/lexer.ml" 361 20250 20254 "lib/lexer.ml" 361 20250 20287
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 362 20288 20292 "lib/lexer.ml" 362 20288 20312
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> int -> X.Token.t
)
ident(
  def __ocaml_lex_main_rec "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 450 22475 22530
)
"lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.ml" 362 20288 20324 "lib/lexer.ml" 450 22475 22530
)
"lib/lexer.ml" 362 20288 20324 "lib/lexer.ml" 362 20288 20341
type(
  int
)
ident(
  def __ocaml_lex_state "lib/lexer.ml" 363 20344 20346 "lib/lexer.ml" 450 22475 22530
)
"lib/lexer.ml" 363 20344 20352 "lib/lexer.ml" 363 20344 20365
type(
  Lexing.lex_tables -> int -> Lexing.lexbuf -> int
)
ident(
  ext_ref Lexing.engine
)
"lib/lexer.ml" 363 20344 20366 "lib/lexer.ml" 363 20344 20384
type(
  Lexing.lex_tables
)
ident(
  int_ref __ocaml_lex_tables "lib/lexer.ml" 83 2189 2193 "lib/lexer.ml" 83 2189 2211
)
"lib/lexer.ml" 363 20344 20385 "lib/lexer.ml" 363 20344 20402
type(
  int
)
ident(
  int_ref __ocaml_lex_state "lib/lexer.ml" 362 20288 20324 "lib/lexer.ml" 362 20288 20341
)
"lib/lexer.ml" 363 20344 20403 "lib/lexer.ml" 363 20344 20409
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 363 20344 20352 "lib/lexer.ml" 363 20344 20409
call(
  stack
)
type(
  int
)
"lib/lexer.ml" 364 20415 20423 "lib/lexer.ml" 364 20415 20424
type(
  int
)
"lib/lexer.mll" 94 20449 20472 "lib/lexer.mll" 94 20449 20485
type(
  Lexing.lexbuf -> int -> unit
)
ident(
  int_ref found_newline "lib/lexer.mll" 32 672 678 "lib/lexer.mll" 32 672 691
)
"lib/lexer.mll" 94 20449 20486 "lib/lexer.mll" 94 20449 20492
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 94 20449 20493 "lib/lexer.mll" 94 20449 20494
type(
  int
)
"lib/lexer.mll" 94 20449 20472 "lib/lexer.mll" 94 20449 20494
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 95 20496 20519 "lib/lexer.mll" 95 20496 20523
type(
  X.Token.s
)
ident(
  int_ref main "lib/lexer.ml" 360 20224 20232 "lib/lexer.ml" 360 20224 20236
)
"lib/lexer.mll" 95 20496 20524 "lib/lexer.mll" 95 20496 20527
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 95 20496 20528 "lib/lexer.mll" 95 20496 20534
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 95 20496 20519 "lib/lexer.mll" 95 20496 20534
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.mll" 94 20449 20470 "lib/lexer.mll" 95 20496 20536
type(
  X.Token.t
)
"lib/lexer.ml" 370 20559 20563 "lib/lexer.ml" 370 20559 20564
type(
  int
)
"lib/lexer.mll" 96 20589 20602 "lib/lexer.mll" 96 20589 20606
type(
  X.Token.s
)
ident(
  int_ref main "lib/lexer.ml" 360 20224 20232 "lib/lexer.ml" 360 20224 20236
)
"lib/lexer.mll" 96 20589 20607 "lib/lexer.mll" 96 20589 20610
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 96 20589 20611 "lib/lexer.mll" 96 20589 20617
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 96 20589 20600 "lib/lexer.mll" 96 20589 20619
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 375 20642 20646 "lib/lexer.ml" 375 20642 20647
type(
  int
)
"lib/lexer.mll" 97 20676 20702 "lib/lexer.mll" 97 20676 20706
type(
  string
)
ident(
  def text "lib/lexer.mll" 97 20834 20865 "lib/lexer.mll" 97 20834 20904
)
"lib/lexer.ml" 380 20728 20730 "lib/lexer.ml" 380 20728 20747
type(
  Lexing.lexbuf -> int -> int -> string
)
ident(
  ext_ref Lexing.sub_lexeme
)
"lib/lexer.ml" 380 20728 20748 "lib/lexer.ml" 380 20728 20754
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 380 20728 20755 "lib/lexer.ml" 380 20728 20761
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 380 20728 20755 "lib/lexer.ml" 380 20728 20782
type(
  int
)
"lib/lexer.ml" 380 20728 20783 "lib/lexer.ml" 380 20728 20789
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 380 20728 20783 "lib/lexer.ml" 380 20728 20809
type(
  int
)
"lib/lexer.ml" 380 20728 20730 "lib/lexer.ml" 380 20728 20809
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 97 20834 20867 "lib/lexer.mll" 97 20834 20880
type(
  string -> main:X.Token.s -> X.Token.s
)
ident(
  int_ref X.Token.comment "lib/lexer.mll" 71 1890 1896 "lib/lexer.mll" 71 1890 1931
)
"lib/lexer.mll" 97 20834 20881 "lib/lexer.mll" 97 20834 20885
type(
  string
)
ident(
  int_ref text "lib/lexer.mll" 97 20676 20702 "lib/lexer.mll" 97 20676 20706
)
"lib/lexer.mll" 97 20834 20887 "lib/lexer.mll" 97 20834 20891
type(
  X.Token.s
)
ident(
  int_ref main "lib/lexer.ml" 360 20224 20232 "lib/lexer.ml" 360 20224 20236
)
"lib/lexer.mll" 97 20834 20892 "lib/lexer.mll" 97 20834 20895
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 97 20834 20896 "lib/lexer.mll" 97 20834 20902
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 97 20834 20865 "lib/lexer.mll" 97 20834 20904
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 376 20651 20651 "lib/lexer.mll" 97 20834 20904
type(
  X.Token.t
)
"lib/lexer.ml" 385 20927 20931 "lib/lexer.ml" 385 20927 20932
type(
  int
)
"lib/lexer.mll" 98 20957 20965 "lib/lexer.mll" 98 20957 20981
type(
  X.Token.t
)
ident(
  int_ref X.Token.lparen "lib/lexer.mll" 64 1635 1641 "lib/lexer.mll" 64 1635 1655
)
"lib/lexer.ml" 390 21004 21008 "lib/lexer.ml" 390 21004 21009
type(
  int
)
"lib/lexer.mll" 99 21034 21042 "lib/lexer.mll" 99 21034 21058
type(
  X.Token.t
)
ident(
  int_ref X.Token.rparen "lib/lexer.mll" 65 1656 1662 "lib/lexer.mll" 65 1656 1676
)
"lib/lexer.ml" 395 21081 21085 "lib/lexer.ml" 395 21081 21086
type(
  int
)
"lib/lexer.mll" 102 21120 21132 "lib/lexer.mll" 102 21120 21135
type(
  Lexing.position
)
ident(
  def pos "lib/lexer.mll" 103 21170 21178 "lib/lexer.mll" 107 21347 21358
)
"lib/lexer.mll" 102 21120 21138 "lib/lexer.mll" 102 21120 21159
type(
  Lexing.lexbuf -> Lexing.position
)
ident(
  ext_ref Lexing.lexeme_start_p
)
"lib/lexer.mll" 102 21120 21160 "lib/lexer.mll" 102 21120 21166
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 102 21120 21138 "lib/lexer.mll" 102 21120 21166
call(
  stack
)
type(
  Lexing.position
)
"lib/lexer.mll" 103 21170 21178 "lib/lexer.mll" 103 21170 21209
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 103 21170 21210 "lib/lexer.mll" 103 21170 21213
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 103 21170 21214 "lib/lexer.mll" 103 21170 21220
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 103 21170 21178 "lib/lexer.mll" 103 21170 21220
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 104 21222 21230 "lib/lexer.mll" 104 21222 21241
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 104 21222 21242 "lib/lexer.mll" 104 21222 21245
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 104 21222 21246 "lib/lexer.mll" 104 21222 21249
type(
  Lexing.position
)
ident(
  int_ref pos "lib/lexer.mll" 102 21120 21132 "lib/lexer.mll" 102 21120 21135
)
"lib/lexer.mll" 104 21222 21250 "lib/lexer.mll" 104 21222 21256
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 104 21222 21230 "lib/lexer.mll" 104 21222 21256
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 105 21258 21270 "lib/lexer.mll" 105 21258 21273
type(
  X.Token.t
)
ident(
  def tok "lib/lexer.mll" 106 21307 21315 "lib/lexer.mll" 107 21347 21358
)
"lib/lexer.mll" 105 21258 21276 "lib/lexer.mll" 105 21258 21295
type(
  Lexing.position -> X.Quoted_string_buffer.t -> X.Token.t
)
ident(
  int_ref X.Token.quoted_string "lib/lexer.mll" 69 1757 1763 "lib/lexer.mll" 69 1757 1829
)
"lib/lexer.mll" 105 21258 21296 "lib/lexer.mll" 105 21258 21299
type(
  Lexing.position
)
ident(
  int_ref pos "lib/lexer.mll" 102 21120 21132 "lib/lexer.mll" 102 21120 21135
)
"lib/lexer.mll" 105 21258 21300 "lib/lexer.mll" 105 21258 21303
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 105 21258 21276 "lib/lexer.mll" 105 21258 21303
call(
  stack
)
type(
  X.Token.t
)
"lib/lexer.mll" 106 21307 21315 "lib/lexer.mll" 106 21307 21341
type(
  X.Quoted_string_buffer.t -> unit
)
ident(
  int_ref X.Quoted_string_buffer.clear "lib/lexer.mll" 59 1527 1533 "lib/lexer.mll" 59 1527 1554
)
"lib/lexer.mll" 106 21307 21342 "lib/lexer.mll" 106 21307 21345
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 106 21307 21315 "lib/lexer.mll" 106 21307 21345
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 107 21347 21355 "lib/lexer.mll" 107 21347 21358
type(
  X.Token.t
)
ident(
  int_ref tok "lib/lexer.mll" 105 21258 21270 "lib/lexer.mll" 105 21258 21273
)
"lib/lexer.mll" 106 21307 21315 "lib/lexer.mll" 107 21347 21358
type(
  X.Token.t
)
"lib/lexer.mll" 105 21258 21266 "lib/lexer.mll" 107 21347 21358
type(
  X.Token.t
)
"lib/lexer.mll" 104 21222 21230 "lib/lexer.mll" 107 21347 21358
type(
  X.Token.t
)
"lib/lexer.mll" 103 21170 21178 "lib/lexer.mll" 107 21347 21358
type(
  X.Token.t
)
"lib/lexer.mll" 101 21112 21118 "lib/lexer.mll" 108 21359 21366
type(
  X.Token.t
)
"lib/lexer.ml" 407 21389 21393 "lib/lexer.ml" 407 21389 21394
type(
  int
)
"lib/lexer.mll" 109 21420 21429 "lib/lexer.mll" 109 21420 21448
type(
  X.Token.t
)
ident(
  int_ref X.Token.hash_semi "lib/lexer.mll" 68 1733 1739 "lib/lexer.mll" 68 1733 1756
)
"lib/lexer.ml" 412 21471 21475 "lib/lexer.ml" 412 21471 21476
type(
  int
)
"lib/lexer.mll" 112 21510 21522 "lib/lexer.mll" 112 21510 21525
type(
  Lexing.position
)
ident(
  def pos "lib/lexer.mll" 113 21560 21568 "lib/lexer.mll" 117 21759 21770
)
"lib/lexer.mll" 112 21510 21528 "lib/lexer.mll" 112 21510 21549
type(
  Lexing.lexbuf -> Lexing.position
)
ident(
  ext_ref Lexing.lexeme_start_p
)
"lib/lexer.mll" 112 21510 21550 "lib/lexer.mll" 112 21510 21556
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 112 21510 21528 "lib/lexer.mll" 112 21510 21556
call(
  stack
)
type(
  Lexing.position
)
"lib/lexer.mll" 113 21560 21568 "lib/lexer.mll" 113 21560 21599
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 113 21560 21600 "lib/lexer.mll" 113 21560 21603
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 113 21560 21604 "lib/lexer.mll" 113 21560 21610
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 113 21560 21568 "lib/lexer.mll" 113 21560 21610
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 114 21612 21620 "lib/lexer.mll" 114 21612 21638
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_block_comment "lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
)
"lib/lexer.mll" 114 21612 21639 "lib/lexer.mll" 114 21612 21642
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 114 21612 21644 "lib/lexer.mll" 114 21612 21647
type(
  Lexing.position
)
ident(
  int_ref pos "lib/lexer.mll" 112 21510 21522 "lib/lexer.mll" 112 21510 21525
)
"lib/lexer.mll" 114 21612 21643 "lib/lexer.mll" 114 21612 21648
type(
  Lexing.position list
)
"lib/lexer.mll" 114 21612 21649 "lib/lexer.mll" 114 21612 21655
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 114 21612 21620 "lib/lexer.mll" 114 21612 21655
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 115 21657 21669 "lib/lexer.mll" 115 21657 21672
type(
  X.Token.t
)
ident(
  def tok "lib/lexer.mll" 116 21719 21727 "lib/lexer.mll" 117 21759 21770
)
"lib/lexer.mll" 115 21657 21675 "lib/lexer.mll" 115 21657 21694
type(
  Lexing.position -> main:X.Token.s -> X.Token.s
)
ident(
  int_ref X.Token.block_comment "lib/lexer.mll" 72 1932 1938 "lib/lexer.mll" 72 1932 1988
)
"lib/lexer.mll" 115 21657 21695 "lib/lexer.mll" 115 21657 21698
type(
  Lexing.position
)
ident(
  int_ref pos "lib/lexer.mll" 112 21510 21522 "lib/lexer.mll" 112 21510 21525
)
"lib/lexer.mll" 115 21657 21700 "lib/lexer.mll" 115 21657 21704
type(
  X.Token.s
)
ident(
  int_ref main "lib/lexer.ml" 360 20224 20232 "lib/lexer.ml" 360 20224 20236
)
"lib/lexer.mll" 115 21657 21705 "lib/lexer.mll" 115 21657 21708
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 115 21657 21709 "lib/lexer.mll" 115 21657 21715
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 115 21657 21675 "lib/lexer.mll" 115 21657 21715
call(
  stack
)
type(
  X.Token.t
)
"lib/lexer.mll" 116 21719 21727 "lib/lexer.mll" 116 21719 21753
type(
  X.Quoted_string_buffer.t -> unit
)
ident(
  int_ref X.Quoted_string_buffer.clear "lib/lexer.mll" 59 1527 1533 "lib/lexer.mll" 59 1527 1554
)
"lib/lexer.mll" 116 21719 21754 "lib/lexer.mll" 116 21719 21757
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.mll" 116 21719 21727 "lib/lexer.mll" 116 21719 21757
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 117 21759 21767 "lib/lexer.mll" 117 21759 21770
type(
  X.Token.t
)
ident(
  int_ref tok "lib/lexer.mll" 115 21657 21669 "lib/lexer.mll" 115 21657 21672
)
"lib/lexer.mll" 116 21719 21727 "lib/lexer.mll" 117 21759 21770
type(
  X.Token.t
)
"lib/lexer.mll" 115 21657 21665 "lib/lexer.mll" 117 21759 21770
type(
  X.Token.t
)
"lib/lexer.mll" 114 21612 21620 "lib/lexer.mll" 117 21759 21770
type(
  X.Token.t
)
"lib/lexer.mll" 113 21560 21568 "lib/lexer.mll" 117 21759 21770
type(
  X.Token.t
)
"lib/lexer.mll" 111 21502 21508 "lib/lexer.mll" 118 21771 21778
type(
  X.Token.t
)
"lib/lexer.ml" 424 21801 21805 "lib/lexer.ml" 424 21801 21806
type(
  int
)
"lib/lexer.mll" 119 21832 21843 "lib/lexer.mll" 119 21832 21855
type(
  Lexing.lexbuf -> string -> X.Token.t
)
ident(
  int_ref main_failure "lib/lexer.mll" 43 1023 1029 "lib/lexer.mll" 43 1023 1041
)
"lib/lexer.mll" 119 21832 21856 "lib/lexer.mll" 119 21832 21862
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 119 21832 21863 "lib/lexer.mll" 119 21832 21887
type(
  string
)
"lib/lexer.mll" 119 21832 21841 "lib/lexer.mll" 119 21832 21889
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 429 21912 21916 "lib/lexer.ml" 429 21912 21917
type(
  int
)
"lib/lexer.mll" 125 21943 21951 "lib/lexer.mll" 125 21943 21963
type(
  Lexing.lexbuf -> string -> X.Token.t
)
ident(
  int_ref main_failure "lib/lexer.mll" 43 1023 1029 "lib/lexer.mll" 43 1023 1041
)
"lib/lexer.mll" 125 21943 21964 "lib/lexer.mll" 125 21943 21970
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.mll" 125 21943 21971 "lib/lexer.mll" 125 21943 22004
type(
  string
)
"lib/lexer.mll" 125 21943 21949 "lib/lexer.mll" 125 21943 22006
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 434 22029 22033 "lib/lexer.ml" 434 22029 22035
type(
  int
)
"lib/lexer.mll" 126 22065 22109 "lib/lexer.mll" 126 22065 22112
type(
  string
)
ident(
  def str "lib/lexer.mll" 126 22241 22289 "lib/lexer.mll" 126 22241 22316
)
"lib/lexer.ml" 439 22134 22136 "lib/lexer.ml" 439 22134 22153
type(
  Lexing.lexbuf -> int -> int -> string
)
ident(
  ext_ref Lexing.sub_lexeme
)
"lib/lexer.ml" 439 22134 22154 "lib/lexer.ml" 439 22134 22160
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 439 22134 22161 "lib/lexer.ml" 439 22134 22167
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 439 22134 22161 "lib/lexer.ml" 439 22134 22188
type(
  int
)
"lib/lexer.ml" 439 22134 22189 "lib/lexer.ml" 439 22134 22195
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 439 22134 22189 "lib/lexer.ml" 439 22134 22215
type(
  int
)
"lib/lexer.ml" 439 22134 22136 "lib/lexer.ml" 439 22134 22215
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 126 22241 22291 "lib/lexer.mll" 126 22241 22310
type(
  string -> X.Token.t
)
ident(
  int_ref X.Token.simple_string "lib/lexer.mll" 67 1695 1701 "lib/lexer.mll" 67 1695 1732
)
"lib/lexer.mll" 126 22241 22311 "lib/lexer.mll" 126 22241 22314
type(
  string
)
ident(
  int_ref str "lib/lexer.mll" 126 22065 22109 "lib/lexer.mll" 126 22065 22112
)
"lib/lexer.mll" 126 22241 22289 "lib/lexer.mll" 126 22241 22316
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 435 22039 22039 "lib/lexer.mll" 126 22241 22316
type(
  X.Token.t
)
"lib/lexer.ml" 444 22339 22343 "lib/lexer.ml" 444 22339 22345
type(
  int
)
"lib/lexer.mll" 127 22371 22379 "lib/lexer.mll" 127 22371 22392
type(
  X.Token.t
)
ident(
  int_ref X.Token.eof "lib/lexer.mll" 66 1677 1683 "lib/lexer.mll" 66 1677 1694
)
"lib/lexer.ml" 449 22415 22419 "lib/lexer.ml" 449 22415 22436
type(
  int
)
ident(
  def __ocaml_lex_state "lib/lexer.ml" 449 22415 22440 "lib/lexer.ml" 450 22475 22530
)
"lib/lexer.ml" 449 22415 22440 "lib/lexer.ml" 449 22415 22446
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 449 22415 22440 "lib/lexer.ml" 449 22415 22465
type(
  Lexing.lexbuf -> unit
)
"lib/lexer.ml" 449 22415 22466 "lib/lexer.ml" 449 22415 22472
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 449 22415 22440 "lib/lexer.ml" 449 22415 22472
call(
  stack
)
type(
  unit
)
"lib/lexer.ml" 450 22475 22481 "lib/lexer.ml" 450 22475 22501
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> int -> X.Token.t
)
ident(
  int_ref __ocaml_lex_main_rec "lib/lexer.ml" 362 20288 20292 "lib/lexer.ml" 362 20288 20312
)
"lib/lexer.ml" 450 22475 22502 "lib/lexer.ml" 450 22475 22505
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 362 20288 20313 "lib/lexer.ml" 362 20288 20316
)
"lib/lexer.ml" 450 22475 22506 "lib/lexer.ml" 450 22475 22512
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 362 20288 20317 "lib/lexer.ml" 362 20288 20323
)
"lib/lexer.ml" 450 22475 22513 "lib/lexer.ml" 450 22475 22530
type(
  int
)
ident(
  int_ref __ocaml_lex_state "lib/lexer.ml" 449 22415 22419 "lib/lexer.ml" 449 22415 22436
)
"lib/lexer.ml" 450 22475 22481 "lib/lexer.ml" 450 22475 22530
call(
  tail
)
type(
  X.Token.t
)
"lib/lexer.ml" 449 22415 22440 "lib/lexer.ml" 450 22475 22530
type(
  X.Token.t
)
"lib/lexer.ml" 363 20344 20346 "lib/lexer.ml" 450 22475 22530
type(
  X.Token.t
)
"lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  def scan_string "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 452 22532 22548 "lib/lexer.ml" 452 22532 22551
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.ml" 452 22532 22552 "lib/lexer.ml" 453 22567 22618
)
"lib/lexer.ml" 452 22532 22552 "lib/lexer.ml" 452 22532 22557
type(
  Lexing.position
)
ident(
  def start "lib/lexer.ml" 452 22532 22558 "lib/lexer.ml" 453 22567 22618
)
"lib/lexer.ml" 452 22532 22558 "lib/lexer.ml" 452 22532 22564
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.ml" 453 22567 22571 "lib/lexer.ml" 453 22567 22618
)
"lib/lexer.ml" 453 22567 22571 "lib/lexer.ml" 453 22567 22598
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> int -> unit
)
ident(
  int_ref __ocaml_lex_scan_string_rec "lib/lexer.ml" 454 22619 22623 "lib/lexer.ml" 454 22619 22650
)
"lib/lexer.ml" 453 22567 22599 "lib/lexer.ml" 453 22567 22602
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 452 22532 22548 "lib/lexer.ml" 452 22532 22551
)
"lib/lexer.ml" 453 22567 22603 "lib/lexer.ml" 453 22567 22608
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 452 22532 22552 "lib/lexer.ml" 452 22532 22557
)
"lib/lexer.ml" 453 22567 22609 "lib/lexer.ml" 453 22567 22615
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 452 22532 22558 "lib/lexer.ml" 452 22532 22564
)
"lib/lexer.ml" 453 22567 22616 "lib/lexer.ml" 453 22567 22618
type(
  int
)
"lib/lexer.ml" 453 22567 22571 "lib/lexer.ml" 453 22567 22618
call(
  tail
)
type(
  unit
)
"lib/lexer.ml" 454 22619 22623 "lib/lexer.ml" 454 22619 22650
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> int -> unit
)
ident(
  def __ocaml_lex_scan_string_rec "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 598 26624 26692
)
"lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
type(
  Lexing.position
)
ident(
  def start "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 598 26624 26692
)
"lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.ml" 454 22619 22668 "lib/lexer.ml" 598 26624 26692
)
"lib/lexer.ml" 454 22619 22668 "lib/lexer.ml" 454 22619 22685
type(
  int
)
ident(
  def __ocaml_lex_state "lib/lexer.ml" 455 22688 22690 "lib/lexer.ml" 598 26624 26692
)
"lib/lexer.ml" 455 22688 22696 "lib/lexer.ml" 455 22688 22709
type(
  Lexing.lex_tables -> int -> Lexing.lexbuf -> int
)
ident(
  ext_ref Lexing.engine
)
"lib/lexer.ml" 455 22688 22710 "lib/lexer.ml" 455 22688 22728
type(
  Lexing.lex_tables
)
ident(
  int_ref __ocaml_lex_tables "lib/lexer.ml" 83 2189 2193 "lib/lexer.ml" 83 2189 2211
)
"lib/lexer.ml" 455 22688 22729 "lib/lexer.ml" 455 22688 22746
type(
  int
)
ident(
  int_ref __ocaml_lex_state "lib/lexer.ml" 454 22619 22668 "lib/lexer.ml" 454 22619 22685
)
"lib/lexer.ml" 455 22688 22747 "lib/lexer.ml" 455 22688 22753
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 455 22688 22696 "lib/lexer.ml" 455 22688 22753
call(
  stack
)
type(
  int
)
"lib/lexer.ml" 456 22759 22767 "lib/lexer.ml" 456 22759 22768
type(
  int
)
"lib/lexer.mll" 130 22794 22804 "lib/lexer.mll" 130 22794 22835
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 130 22794 22836 "lib/lexer.mll" 130 22794 22839
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 130 22794 22840 "lib/lexer.mll" 130 22794 22846
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 130 22794 22804 "lib/lexer.mll" 130 22794 22846
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 130 22794 22848 "lib/lexer.mll" 130 22794 22850
type(
  unit
)
"lib/lexer.mll" 130 22794 22802 "lib/lexer.mll" 130 22794 22852
type(
  unit
)
"lib/lexer.ml" 461 22875 22879 "lib/lexer.ml" 461 22875 22880
type(
  int
)
"lib/lexer.mll" 133 22914 22926 "lib/lexer.mll" 133 22914 22929
type(
  int
)
ident(
  def len "lib/lexer.mll" 134 22957 22965 "lib/lexer.mll" 136 23043 23079
)
"lib/lexer.mll" 133 22914 22932 "lib/lexer.mll" 133 22914 22942
type(
  Lexing.lexbuf -> int
)
ident(
  int_ref lexeme_len "lib/lexer.mll" 41 939 945 "lib/lexer.mll" 41 939 955
)
"lib/lexer.mll" 133 22914 22943 "lib/lexer.mll" 133 22914 22949
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 133 22914 22932 "lib/lexer.mll" 133 22914 22949
call(
  stack
)
type(
  int
)
"lib/lexer.mll" 133 22914 22950 "lib/lexer.mll" 133 22914 22951
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 133 22914 22952 "lib/lexer.mll" 133 22914 22953
type(
  int
)
"lib/lexer.mll" 133 22914 22932 "lib/lexer.mll" 133 22914 22953
type(
  int
)
"lib/lexer.mll" 134 22957 22965 "lib/lexer.mll" 134 22957 22978
type(
  Lexing.lexbuf -> int -> unit
)
ident(
  int_ref found_newline "lib/lexer.mll" 32 672 678 "lib/lexer.mll" 32 672 691
)
"lib/lexer.mll" 134 22957 22979 "lib/lexer.mll" 134 22957 22985
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 134 22957 22986 "lib/lexer.mll" 134 22957 22989
type(
  int
)
ident(
  int_ref len "lib/lexer.mll" 133 22914 22926 "lib/lexer.mll" 133 22914 22929
)
"lib/lexer.mll" 134 22957 22965 "lib/lexer.mll" 134 22957 22989
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 135 22991 22999 "lib/lexer.mll" 135 22991 23030
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 135 22991 23031 "lib/lexer.mll" 135 22991 23034
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 135 22991 23035 "lib/lexer.mll" 135 22991 23041
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 135 22991 22999 "lib/lexer.mll" 135 22991 23041
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 136 23043 23051 "lib/lexer.mll" 136 23043 23062
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 136 23043 23063 "lib/lexer.mll" 136 23043 23066
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 136 23043 23067 "lib/lexer.mll" 136 23043 23072
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 136 23043 23073 "lib/lexer.mll" 136 23043 23079
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 136 23043 23051 "lib/lexer.mll" 136 23043 23079
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 135 22991 22999 "lib/lexer.mll" 136 23043 23079
type(
  unit
)
"lib/lexer.mll" 134 22957 22965 "lib/lexer.mll" 136 23043 23079
type(
  unit
)
"lib/lexer.mll" 132 22906 22912 "lib/lexer.mll" 137 23080 23087
type(
  unit
)
"lib/lexer.ml" 471 23110 23114 "lib/lexer.ml" 471 23110 23115
type(
  int
)
"lib/lexer.mll" 140 23149 23161 "lib/lexer.mll" 140 23149 23164
type(
  int
)
ident(
  def len "lib/lexer.mll" 141 23192 23200 "lib/lexer.mll" 143 23278 23314
)
"lib/lexer.mll" 140 23149 23167 "lib/lexer.mll" 140 23149 23177
type(
  Lexing.lexbuf -> int
)
ident(
  int_ref lexeme_len "lib/lexer.mll" 41 939 945 "lib/lexer.mll" 41 939 955
)
"lib/lexer.mll" 140 23149 23178 "lib/lexer.mll" 140 23149 23184
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 140 23149 23167 "lib/lexer.mll" 140 23149 23184
call(
  stack
)
type(
  int
)
"lib/lexer.mll" 140 23149 23185 "lib/lexer.mll" 140 23149 23186
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 140 23149 23187 "lib/lexer.mll" 140 23149 23188
type(
  int
)
"lib/lexer.mll" 140 23149 23167 "lib/lexer.mll" 140 23149 23188
type(
  int
)
"lib/lexer.mll" 141 23192 23200 "lib/lexer.mll" 141 23192 23213
type(
  Lexing.lexbuf -> int -> unit
)
ident(
  int_ref found_newline "lib/lexer.mll" 32 672 678 "lib/lexer.mll" 32 672 691
)
"lib/lexer.mll" 141 23192 23214 "lib/lexer.mll" 141 23192 23220
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 141 23192 23221 "lib/lexer.mll" 141 23192 23224
type(
  int
)
ident(
  int_ref len "lib/lexer.mll" 140 23149 23161 "lib/lexer.mll" 140 23149 23164
)
"lib/lexer.mll" 141 23192 23200 "lib/lexer.mll" 141 23192 23224
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 142 23226 23234 "lib/lexer.mll" 142 23226 23265
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 142 23226 23266 "lib/lexer.mll" 142 23226 23269
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 142 23226 23270 "lib/lexer.mll" 142 23226 23276
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 142 23226 23234 "lib/lexer.mll" 142 23226 23276
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 143 23278 23286 "lib/lexer.mll" 143 23278 23297
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 143 23278 23298 "lib/lexer.mll" 143 23278 23301
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 143 23278 23302 "lib/lexer.mll" 143 23278 23307
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 143 23278 23308 "lib/lexer.mll" 143 23278 23314
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 143 23278 23286 "lib/lexer.mll" 143 23278 23314
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 142 23226 23234 "lib/lexer.mll" 143 23278 23314
type(
  unit
)
"lib/lexer.mll" 141 23192 23200 "lib/lexer.mll" 143 23278 23314
type(
  unit
)
"lib/lexer.mll" 139 23141 23147 "lib/lexer.mll" 144 23315 23322
type(
  unit
)
"lib/lexer.ml" 481 23345 23349 "lib/lexer.ml" 481 23345 23350
type(
  int
)
"lib/lexer.mll" 145 23380 23429 "lib/lexer.mll" 145 23380 23430
type(
  char
)
ident(
  def c "lib/lexer.mll" 146 23543 23549 "lib/lexer.mll" 150 23706 23713
)
"lib/lexer.ml" 486 23452 23454 "lib/lexer.ml" 486 23452 23476
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 486 23452 23477 "lib/lexer.ml" 486 23452 23483
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 486 23452 23485 "lib/lexer.ml" 486 23452 23491
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 486 23452 23485 "lib/lexer.ml" 486 23452 23512
type(
  int
)
"lib/lexer.ml" 486 23452 23513 "lib/lexer.ml" 486 23452 23514
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 486 23452 23515 "lib/lexer.ml" 486 23452 23516
type(
  int
)
"lib/lexer.ml" 486 23452 23484 "lib/lexer.ml" 486 23452 23517
type(
  int
)
"lib/lexer.ml" 486 23452 23454 "lib/lexer.ml" 486 23452 23517
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 147 23551 23559 "lib/lexer.mll" 147 23551 23588
type(
  X.Quoted_string_buffer.t -> char -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_char "lib/lexer.mll" 56 1385 1391 "lib/lexer.mll" 56 1385 1423
)
"lib/lexer.mll" 147 23551 23589 "lib/lexer.mll" 147 23551 23592
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 147 23551 23594 "lib/lexer.mll" 147 23551 23612
type(
  char -> char
)
ident(
  int_ref char_for_backslash "lib/lexer.mll" 7 106 112 "lib/lexer.mll" 7 106 130
)
"lib/lexer.mll" 147 23551 23613 "lib/lexer.mll" 147 23551 23614
type(
  char
)
ident(
  int_ref c "lib/lexer.mll" 145 23380 23429 "lib/lexer.mll" 145 23380 23430
)
"lib/lexer.mll" 147 23551 23593 "lib/lexer.mll" 147 23551 23615
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 147 23551 23559 "lib/lexer.mll" 147 23551 23615
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 148 23617 23625 "lib/lexer.mll" 148 23617 23656
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 148 23617 23657 "lib/lexer.mll" 148 23617 23660
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 148 23617 23661 "lib/lexer.mll" 148 23617 23667
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 148 23617 23625 "lib/lexer.mll" 148 23617 23667
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 149 23669 23677 "lib/lexer.mll" 149 23669 23688
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 149 23669 23689 "lib/lexer.mll" 149 23669 23692
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 149 23669 23693 "lib/lexer.mll" 149 23669 23698
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 149 23669 23699 "lib/lexer.mll" 149 23669 23705
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 149 23669 23677 "lib/lexer.mll" 149 23669 23705
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 148 23617 23625 "lib/lexer.mll" 149 23669 23705
type(
  unit
)
"lib/lexer.mll" 146 23543 23549 "lib/lexer.mll" 150 23706 23713
type(
  unit
)
"lib/lexer.ml" 482 23354 23354 "lib/lexer.mll" 150 23706 23713
type(
  unit
)
"lib/lexer.ml" 495 23736 23740 "lib/lexer.ml" 495 23736 23741
type(
  int
)
"lib/lexer.mll" 151 23771 23790 "lib/lexer.mll" 151 23771 23792
type(
  char
)
ident(
  def c1 "lib/lexer.mll" 152 24217 24223 "lib/lexer.mll" 166 24764 24771
)
"lib/lexer.ml" 500 23814 23816 "lib/lexer.ml" 500 23814 23838
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 500 23814 23839 "lib/lexer.ml" 500 23814 23845
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 500 23814 23847 "lib/lexer.ml" 500 23814 23853
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 500 23814 23847 "lib/lexer.ml" 500 23814 23874
type(
  int
)
"lib/lexer.ml" 500 23814 23875 "lib/lexer.ml" 500 23814 23876
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 500 23814 23877 "lib/lexer.ml" 500 23814 23878
type(
  int
)
"lib/lexer.ml" 500 23814 23846 "lib/lexer.ml" 500 23814 23879
type(
  int
)
"lib/lexer.ml" 500 23814 23816 "lib/lexer.ml" 500 23814 23879
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 151 23906 23939 "lib/lexer.mll" 151 23906 23941
type(
  char
)
ident(
  def c2 "lib/lexer.mll" 152 24217 24223 "lib/lexer.mll" 166 24764 24771
)
"lib/lexer.ml" 505 23963 23965 "lib/lexer.ml" 505 23963 23987
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 505 23963 23988 "lib/lexer.ml" 505 23963 23994
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 505 23963 23996 "lib/lexer.ml" 505 23963 24002
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 505 23963 23996 "lib/lexer.ml" 505 23963 24023
type(
  int
)
"lib/lexer.ml" 505 23963 24024 "lib/lexer.ml" 505 23963 24025
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 505 23963 24026 "lib/lexer.ml" 505 23963 24027
type(
  int
)
"lib/lexer.ml" 505 23963 23995 "lib/lexer.ml" 505 23963 24028
type(
  int
)
"lib/lexer.ml" 505 23963 23965 "lib/lexer.ml" 505 23963 24028
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 151 24055 24102 "lib/lexer.mll" 151 24055 24104
type(
  char
)
ident(
  def c3 "lib/lexer.mll" 152 24217 24223 "lib/lexer.mll" 166 24764 24771
)
"lib/lexer.ml" 510 24126 24128 "lib/lexer.ml" 510 24126 24150
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 510 24126 24151 "lib/lexer.ml" 510 24126 24157
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 510 24126 24159 "lib/lexer.ml" 510 24126 24165
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 510 24126 24159 "lib/lexer.ml" 510 24126 24186
type(
  int
)
"lib/lexer.ml" 510 24126 24187 "lib/lexer.ml" 510 24126 24188
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 510 24126 24189 "lib/lexer.ml" 510 24126 24190
type(
  int
)
"lib/lexer.ml" 510 24126 24158 "lib/lexer.ml" 510 24126 24191
type(
  int
)
"lib/lexer.ml" 510 24126 24128 "lib/lexer.ml" 510 24126 24191
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 153 24225 24237 "lib/lexer.mll" 153 24225 24238
type(
  int
)
ident(
  def v "lib/lexer.mll" 154 24262 24270 "lib/lexer.mll" 165 24727 24763
)
"lib/lexer.mll" 153 24225 24241 "lib/lexer.mll" 153 24225 24249
type(
  char -> char -> char -> int
)
ident(
  int_ref dec_code "lib/lexer.mll" 16 255 261 "lib/lexer.mll" 16 255 269
)
"lib/lexer.mll" 153 24225 24250 "lib/lexer.mll" 153 24225 24252
type(
  char
)
ident(
  int_ref c1 "lib/lexer.mll" 151 23771 23790 "lib/lexer.mll" 151 23771 23792
)
"lib/lexer.mll" 153 24225 24253 "lib/lexer.mll" 153 24225 24255
type(
  char
)
ident(
  int_ref c2 "lib/lexer.mll" 151 23906 23939 "lib/lexer.mll" 151 23906 23941
)
"lib/lexer.mll" 153 24225 24256 "lib/lexer.mll" 153 24225 24258
type(
  char
)
ident(
  int_ref c3 "lib/lexer.mll" 151 24055 24102 "lib/lexer.mll" 151 24055 24104
)
"lib/lexer.mll" 153 24225 24241 "lib/lexer.mll" 153 24225 24258
call(
  stack
)
type(
  int
)
"lib/lexer.mll" 154 24262 24273 "lib/lexer.mll" 154 24262 24274
type(
  int
)
ident(
  int_ref v "lib/lexer.mll" 153 24225 24237 "lib/lexer.mll" 153 24225 24238
)
"lib/lexer.mll" 154 24262 24275 "lib/lexer.mll" 154 24262 24276
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( > )
)
"lib/lexer.mll" 154 24262 24277 "lib/lexer.mll" 154 24262 24280
type(
  int
)
"lib/lexer.mll" 154 24262 24273 "lib/lexer.mll" 154 24262 24280
type(
  bool
)
"lib/lexer.mll" 155 24288 24304 "lib/lexer.mll" 155 24288 24312
type(
  int
)
ident(
  def pos_lnum "lib/lexer.mll" 156 24374 24384 "lib/lexer.mll" 162 24594 24616
)
"lib/lexer.mll" 155 24288 24314 "lib/lexer.mll" 155 24288 24321
type(
  int
)
ident(
  def pos_bol "lib/lexer.mll" 156 24374 24384 "lib/lexer.mll" 162 24594 24616
)
"lib/lexer.mll" 155 24288 24323 "lib/lexer.mll" 155 24288 24331
type(
  int
)
ident(
  def pos_cnum "lib/lexer.mll" 156 24374 24384 "lib/lexer.mll" 162 24594 24616
)
"lib/lexer.mll" 155 24288 24345 "lib/lexer.mll" 155 24288 24346
type(
  string
)
"lib/lexer.mll" 155 24288 24302 "lib/lexer.mll" 155 24288 24348
type(
  Lexing.position
)
"lib/lexer.mll" 155 24288 24351 "lib/lexer.mll" 155 24288 24363
type(
  Lexing.lexbuf -> Lexing.position
)
ident(
  ext_ref Lexing.lexeme_end_p
)
"lib/lexer.mll" 155 24288 24364 "lib/lexer.mll" 155 24288 24370
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 155 24288 24351 "lib/lexer.mll" 155 24288 24370
call(
  stack
)
type(
  Lexing.position
)
"lib/lexer.mll" 156 24374 24388 "lib/lexer.mll" 156 24374 24391
type(
  string
)
ident(
  def msg "lib/lexer.mll" 162 24594 24604 "lib/lexer.mll" 162 24594 24616
)
"lib/lexer.mll" 157 24394 24406 "lib/lexer.mll" 157 24394 24413
type(
  (int -> int -> char -> char -> char -> string, unit, string) format ->
  int -> int -> char -> char -> char -> string
)
ident(
  ext_ref Printf.sprintf
)
"lib/lexer.mll" 158 24414 24428 "lib/lexer.mll" 159 24458 24519
type(
  (int -> int -> char -> char -> char -> string, unit, string) format
)
"lib/lexer.mll" 160 24520 24534 "lib/lexer.mll" 160 24520 24542
type(
  int
)
ident(
  int_ref pos_lnum "lib/lexer.mll" 155 24288 24304 "lib/lexer.mll" 155 24288 24312
)
"lib/lexer.mll" 160 24520 24544 "lib/lexer.mll" 160 24520 24552
type(
  int
)
ident(
  int_ref pos_cnum "lib/lexer.mll" 155 24288 24323 "lib/lexer.mll" 155 24288 24331
)
"lib/lexer.mll" 160 24520 24553 "lib/lexer.mll" 160 24520 24554
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 160 24520 24555 "lib/lexer.mll" 160 24520 24562
type(
  int
)
ident(
  int_ref pos_bol "lib/lexer.mll" 155 24288 24314 "lib/lexer.mll" 155 24288 24321
)
"lib/lexer.mll" 160 24520 24544 "lib/lexer.mll" 160 24520 24562
type(
  int
)
"lib/lexer.mll" 160 24520 24563 "lib/lexer.mll" 160 24520 24564
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 160 24520 24565 "lib/lexer.mll" 160 24520 24566
type(
  int
)
"lib/lexer.mll" 160 24520 24543 "lib/lexer.mll" 160 24520 24567
type(
  int
)
"lib/lexer.mll" 161 24568 24582 "lib/lexer.mll" 161 24568 24584
type(
  char
)
ident(
  int_ref c1 "lib/lexer.mll" 151 23771 23790 "lib/lexer.mll" 151 23771 23792
)
"lib/lexer.mll" 161 24568 24585 "lib/lexer.mll" 161 24568 24587
type(
  char
)
ident(
  int_ref c2 "lib/lexer.mll" 151 23906 23939 "lib/lexer.mll" 151 23906 23941
)
"lib/lexer.mll" 161 24568 24588 "lib/lexer.mll" 161 24568 24590
type(
  char
)
ident(
  int_ref c3 "lib/lexer.mll" 151 24055 24102 "lib/lexer.mll" 151 24055 24104
)
"lib/lexer.mll" 157 24394 24406 "lib/lexer.mll" 161 24568 24590
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 162 24594 24604 "lib/lexer.mll" 162 24594 24612
type(
  string -> unit
)
ident(
  ext_ref Pervasives.failwith
)
"lib/lexer.mll" 162 24594 24613 "lib/lexer.mll" 162 24594 24616
type(
  string
)
ident(
  int_ref msg "lib/lexer.mll" 156 24374 24388 "lib/lexer.mll" 156 24374 24391
)
"lib/lexer.mll" 162 24594 24604 "lib/lexer.mll" 162 24594 24616
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 156 24374 24384 "lib/lexer.mll" 162 24594 24616
type(
  unit
)
"lib/lexer.mll" 154 24262 24286 "lib/lexer.mll" 162 24594 24617
type(
  unit
)
"lib/lexer.mll" 154 24262 24270 "lib/lexer.mll" 162 24594 24617
type(
  unit
)
"lib/lexer.mll" 163 24619 24627 "lib/lexer.mll" 163 24619 24656
type(
  X.Quoted_string_buffer.t -> char -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_char "lib/lexer.mll" 56 1385 1391 "lib/lexer.mll" 56 1385 1423
)
"lib/lexer.mll" 163 24619 24657 "lib/lexer.mll" 163 24619 24660
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 163 24619 24662 "lib/lexer.mll" 163 24619 24670
type(
  int -> char
)
ident(
  ext_ref Char.chr
)
"lib/lexer.mll" 163 24619 24671 "lib/lexer.mll" 163 24619 24672
type(
  int
)
ident(
  int_ref v "lib/lexer.mll" 153 24225 24237 "lib/lexer.mll" 153 24225 24238
)
"lib/lexer.mll" 163 24619 24661 "lib/lexer.mll" 163 24619 24673
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 163 24619 24627 "lib/lexer.mll" 163 24619 24673
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 164 24675 24683 "lib/lexer.mll" 164 24675 24714
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 164 24675 24715 "lib/lexer.mll" 164 24675 24718
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 164 24675 24719 "lib/lexer.mll" 164 24675 24725
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 164 24675 24683 "lib/lexer.mll" 164 24675 24725
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 165 24727 24735 "lib/lexer.mll" 165 24727 24746
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 165 24727 24747 "lib/lexer.mll" 165 24727 24750
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 165 24727 24751 "lib/lexer.mll" 165 24727 24756
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 165 24727 24757 "lib/lexer.mll" 165 24727 24763
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 165 24727 24735 "lib/lexer.mll" 165 24727 24763
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 164 24675 24683 "lib/lexer.mll" 165 24727 24763
type(
  unit
)
"lib/lexer.mll" 163 24619 24627 "lib/lexer.mll" 165 24727 24763
type(
  unit
)
"lib/lexer.mll" 154 24262 24270 "lib/lexer.mll" 165 24727 24763
type(
  unit
)
"lib/lexer.mll" 152 24217 24223 "lib/lexer.mll" 166 24764 24771
type(
  unit
)
"lib/lexer.ml" 496 23745 23745 "lib/lexer.mll" 166 24764 24771
type(
  unit
)
"lib/lexer.ml" 529 24794 24798 "lib/lexer.ml" 529 24794 24799
type(
  int
)
"lib/lexer.mll" 167 24829 24855 "lib/lexer.mll" 167 24829 24857
type(
  char
)
ident(
  def c1 "lib/lexer.mll" 168 25129 25135 "lib/lexer.mll" 173 25316 25323
)
"lib/lexer.ml" 534 24879 24881 "lib/lexer.ml" 534 24879 24903
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 534 24879 24904 "lib/lexer.ml" 534 24879 24910
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 534 24879 24912 "lib/lexer.ml" 534 24879 24918
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 534 24879 24912 "lib/lexer.ml" 534 24879 24939
type(
  int
)
"lib/lexer.ml" 534 24879 24940 "lib/lexer.ml" 534 24879 24941
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 534 24879 24942 "lib/lexer.ml" 534 24879 24943
type(
  int
)
"lib/lexer.ml" 534 24879 24911 "lib/lexer.ml" 534 24879 24944
type(
  int
)
"lib/lexer.ml" 534 24879 24881 "lib/lexer.ml" 534 24879 24944
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 167 24971 25014 "lib/lexer.mll" 167 24971 25016
type(
  char
)
ident(
  def c2 "lib/lexer.mll" 168 25129 25135 "lib/lexer.mll" 173 25316 25323
)
"lib/lexer.ml" 539 25038 25040 "lib/lexer.ml" 539 25038 25062
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 539 25038 25063 "lib/lexer.ml" 539 25038 25069
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 539 25038 25071 "lib/lexer.ml" 539 25038 25077
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 539 25038 25071 "lib/lexer.ml" 539 25038 25098
type(
  int
)
"lib/lexer.ml" 539 25038 25099 "lib/lexer.ml" 539 25038 25100
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 539 25038 25101 "lib/lexer.ml" 539 25038 25102
type(
  int
)
"lib/lexer.ml" 539 25038 25070 "lib/lexer.ml" 539 25038 25103
type(
  int
)
"lib/lexer.ml" 539 25038 25040 "lib/lexer.ml" 539 25038 25103
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 169 25137 25149 "lib/lexer.mll" 169 25137 25150
type(
  int
)
ident(
  def v "lib/lexer.mll" 170 25171 25179 "lib/lexer.mll" 172 25279 25315
)
"lib/lexer.mll" 169 25137 25153 "lib/lexer.mll" 169 25137 25161
type(
  char -> char -> int
)
ident(
  int_ref hex_code "lib/lexer.mll" 19 361 367 "lib/lexer.mll" 19 361 375
)
"lib/lexer.mll" 169 25137 25162 "lib/lexer.mll" 169 25137 25164
type(
  char
)
ident(
  int_ref c1 "lib/lexer.mll" 167 24829 24855 "lib/lexer.mll" 167 24829 24857
)
"lib/lexer.mll" 169 25137 25165 "lib/lexer.mll" 169 25137 25167
type(
  char
)
ident(
  int_ref c2 "lib/lexer.mll" 167 24971 25014 "lib/lexer.mll" 167 24971 25016
)
"lib/lexer.mll" 169 25137 25153 "lib/lexer.mll" 169 25137 25167
call(
  stack
)
type(
  int
)
"lib/lexer.mll" 170 25171 25179 "lib/lexer.mll" 170 25171 25208
type(
  X.Quoted_string_buffer.t -> char -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_char "lib/lexer.mll" 56 1385 1391 "lib/lexer.mll" 56 1385 1423
)
"lib/lexer.mll" 170 25171 25209 "lib/lexer.mll" 170 25171 25212
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 170 25171 25214 "lib/lexer.mll" 170 25171 25222
type(
  int -> char
)
ident(
  ext_ref Char.chr
)
"lib/lexer.mll" 170 25171 25223 "lib/lexer.mll" 170 25171 25224
type(
  int
)
ident(
  int_ref v "lib/lexer.mll" 169 25137 25149 "lib/lexer.mll" 169 25137 25150
)
"lib/lexer.mll" 170 25171 25213 "lib/lexer.mll" 170 25171 25225
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 170 25171 25179 "lib/lexer.mll" 170 25171 25225
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 171 25227 25235 "lib/lexer.mll" 171 25227 25266
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 171 25227 25267 "lib/lexer.mll" 171 25227 25270
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 171 25227 25271 "lib/lexer.mll" 171 25227 25277
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 171 25227 25235 "lib/lexer.mll" 171 25227 25277
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 172 25279 25287 "lib/lexer.mll" 172 25279 25298
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 172 25279 25299 "lib/lexer.mll" 172 25279 25302
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 172 25279 25303 "lib/lexer.mll" 172 25279 25308
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 172 25279 25309 "lib/lexer.mll" 172 25279 25315
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 172 25279 25287 "lib/lexer.mll" 172 25279 25315
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 171 25227 25235 "lib/lexer.mll" 172 25279 25315
type(
  unit
)
"lib/lexer.mll" 170 25171 25179 "lib/lexer.mll" 172 25279 25315
type(
  unit
)
"lib/lexer.mll" 168 25129 25135 "lib/lexer.mll" 173 25316 25323
type(
  unit
)
"lib/lexer.ml" 530 24803 24803 "lib/lexer.mll" 173 25316 25323
type(
  unit
)
"lib/lexer.ml" 549 25346 25350 "lib/lexer.ml" 549 25346 25351
type(
  int
)
"lib/lexer.mll" 174 25381 25396 "lib/lexer.mll" 174 25381 25397
type(
  char
)
ident(
  def c "lib/lexer.mll" 175 25510 25516 "lib/lexer.mll" 180 25700 25707
)
"lib/lexer.ml" 554 25419 25421 "lib/lexer.ml" 554 25419 25443
type(
  Lexing.lexbuf -> int -> char
)
ident(
  ext_ref Lexing.sub_lexeme_char
)
"lib/lexer.ml" 554 25419 25444 "lib/lexer.ml" 554 25419 25450
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 554 25419 25452 "lib/lexer.ml" 554 25419 25458
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 554 25419 25452 "lib/lexer.ml" 554 25419 25479
type(
  int
)
"lib/lexer.ml" 554 25419 25480 "lib/lexer.ml" 554 25419 25481
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"lib/lexer.ml" 554 25419 25482 "lib/lexer.ml" 554 25419 25483
type(
  int
)
"lib/lexer.ml" 554 25419 25451 "lib/lexer.ml" 554 25419 25484
type(
  int
)
"lib/lexer.ml" 554 25419 25421 "lib/lexer.ml" 554 25419 25484
call(
  stack
)
type(
  char
)
"lib/lexer.mll" 176 25518 25526 "lib/lexer.mll" 176 25518 25555
type(
  X.Quoted_string_buffer.t -> char -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_char "lib/lexer.mll" 56 1385 1391 "lib/lexer.mll" 56 1385 1423
)
"lib/lexer.mll" 176 25518 25556 "lib/lexer.mll" 176 25518 25559
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 176 25518 25560 "lib/lexer.mll" 176 25518 25564
type(
  char
)
"lib/lexer.mll" 176 25518 25526 "lib/lexer.mll" 176 25518 25564
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 177 25566 25574 "lib/lexer.mll" 177 25566 25603
type(
  X.Quoted_string_buffer.t -> char -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_char "lib/lexer.mll" 56 1385 1391 "lib/lexer.mll" 56 1385 1423
)
"lib/lexer.mll" 177 25566 25604 "lib/lexer.mll" 177 25566 25607
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 177 25566 25608 "lib/lexer.mll" 177 25566 25609
type(
  char
)
ident(
  int_ref c "lib/lexer.mll" 174 25381 25396 "lib/lexer.mll" 174 25381 25397
)
"lib/lexer.mll" 177 25566 25574 "lib/lexer.mll" 177 25566 25609
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 178 25611 25619 "lib/lexer.mll" 178 25611 25650
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 178 25611 25651 "lib/lexer.mll" 178 25611 25654
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 178 25611 25655 "lib/lexer.mll" 178 25611 25661
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 178 25611 25619 "lib/lexer.mll" 178 25611 25661
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 179 25663 25671 "lib/lexer.mll" 179 25663 25682
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 179 25663 25683 "lib/lexer.mll" 179 25663 25686
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 179 25663 25687 "lib/lexer.mll" 179 25663 25692
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 179 25663 25693 "lib/lexer.mll" 179 25663 25699
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 179 25663 25671 "lib/lexer.mll" 179 25663 25699
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 178 25611 25619 "lib/lexer.mll" 179 25663 25699
type(
  unit
)
"lib/lexer.mll" 177 25566 25574 "lib/lexer.mll" 179 25663 25699
type(
  unit
)
"lib/lexer.mll" 175 25510 25516 "lib/lexer.mll" 180 25700 25707
type(
  unit
)
"lib/lexer.ml" 550 25355 25355 "lib/lexer.mll" 180 25700 25707
type(
  unit
)
"lib/lexer.ml" 564 25730 25734 "lib/lexer.ml" 564 25730 25735
type(
  int
)
"lib/lexer.mll" 183 25769 25777 "lib/lexer.mll" 183 25769 25790
type(
  Lexing.lexbuf -> int -> unit
)
ident(
  int_ref found_newline "lib/lexer.mll" 32 672 678 "lib/lexer.mll" 32 672 691
)
"lib/lexer.mll" 183 25769 25791 "lib/lexer.mll" 183 25769 25797
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 183 25769 25798 "lib/lexer.mll" 183 25769 25799
type(
  int
)
"lib/lexer.mll" 183 25769 25777 "lib/lexer.mll" 183 25769 25799
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 184 25801 25809 "lib/lexer.mll" 184 25801 25838
type(
  X.Quoted_string_buffer.t -> char -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_char "lib/lexer.mll" 56 1385 1391 "lib/lexer.mll" 56 1385 1423
)
"lib/lexer.mll" 184 25801 25839 "lib/lexer.mll" 184 25801 25842
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 184 25801 25843 "lib/lexer.mll" 184 25801 25845
type(
  char
)
ident(
  int_ref lf "lib/lexer.mll" 14 236 242 "lib/lexer.mll" 14 236 244
)
"lib/lexer.mll" 184 25801 25809 "lib/lexer.mll" 184 25801 25845
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 185 25847 25855 "lib/lexer.mll" 185 25847 25886
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 185 25847 25887 "lib/lexer.mll" 185 25847 25890
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 185 25847 25891 "lib/lexer.mll" 185 25847 25897
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 185 25847 25855 "lib/lexer.mll" 185 25847 25897
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 186 25899 25907 "lib/lexer.mll" 186 25899 25918
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 186 25899 25919 "lib/lexer.mll" 186 25899 25922
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 186 25899 25923 "lib/lexer.mll" 186 25899 25928
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 186 25899 25929 "lib/lexer.mll" 186 25899 25935
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 186 25899 25907 "lib/lexer.mll" 186 25899 25935
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 185 25847 25855 "lib/lexer.mll" 186 25899 25935
type(
  unit
)
"lib/lexer.mll" 184 25801 25809 "lib/lexer.mll" 186 25899 25935
type(
  unit
)
"lib/lexer.mll" 182 25761 25767 "lib/lexer.mll" 187 25936 25943
type(
  unit
)
"lib/lexer.ml" 574 25966 25970 "lib/lexer.ml" 574 25966 25971
type(
  int
)
"lib/lexer.mll" 190 26005 26017 "lib/lexer.mll" 190 26005 26020
type(
  int
)
ident(
  def ofs "lib/lexer.mll" 191 26047 26055 "lib/lexer.mll" 194 26220 26256
)
"lib/lexer.mll" 190 26005 26023 "lib/lexer.mll" 190 26005 26029
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 190 26005 26023 "lib/lexer.mll" 190 26005 26043
type(
  int
)
"lib/lexer.mll" 191 26047 26059 "lib/lexer.mll" 191 26047 26062
type(
  int
)
ident(
  def len "lib/lexer.mll" 192 26094 26102 "lib/lexer.mll" 194 26220 26256
)
"lib/lexer.mll" 191 26047 26065 "lib/lexer.mll" 191 26047 26071
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 191 26047 26065 "lib/lexer.mll" 191 26047 26084
type(
  int
)
"lib/lexer.mll" 191 26047 26085 "lib/lexer.mll" 191 26047 26086
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 191 26047 26087 "lib/lexer.mll" 191 26047 26090
type(
  int
)
ident(
  int_ref ofs "lib/lexer.mll" 190 26005 26017 "lib/lexer.mll" 190 26005 26020
)
"lib/lexer.mll" 191 26047 26065 "lib/lexer.mll" 191 26047 26090
type(
  int
)
"lib/lexer.mll" 192 26094 26102 "lib/lexer.mll" 192 26094 26136
type(
  X.Quoted_string_buffer.t -> bytes -> int -> int -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_substring "lib/lexer.mll" 57 1424 1430 "lib/lexer.mll" 57 1424 1483
)
"lib/lexer.mll" 192 26094 26137 "lib/lexer.mll" 192 26094 26140
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 192 26094 26141 "lib/lexer.mll" 192 26094 26147
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 192 26094 26141 "lib/lexer.mll" 192 26094 26158
type(
  bytes
)
"lib/lexer.mll" 192 26094 26159 "lib/lexer.mll" 192 26094 26162
type(
  int
)
ident(
  int_ref ofs "lib/lexer.mll" 190 26005 26017 "lib/lexer.mll" 190 26005 26020
)
"lib/lexer.mll" 192 26094 26163 "lib/lexer.mll" 192 26094 26166
type(
  int
)
ident(
  int_ref len "lib/lexer.mll" 191 26047 26059 "lib/lexer.mll" 191 26047 26062
)
"lib/lexer.mll" 192 26094 26102 "lib/lexer.mll" 192 26094 26166
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 193 26168 26176 "lib/lexer.mll" 193 26168 26207
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 193 26168 26208 "lib/lexer.mll" 193 26168 26211
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 193 26168 26212 "lib/lexer.mll" 193 26168 26218
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 193 26168 26176 "lib/lexer.mll" 193 26168 26218
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 194 26220 26228 "lib/lexer.mll" 194 26220 26239
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 194 26220 26240 "lib/lexer.mll" 194 26220 26243
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.mll" 194 26220 26244 "lib/lexer.mll" 194 26220 26249
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 194 26220 26250 "lib/lexer.mll" 194 26220 26256
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.mll" 194 26220 26228 "lib/lexer.mll" 194 26220 26256
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 193 26168 26176 "lib/lexer.mll" 194 26220 26256
type(
  unit
)
"lib/lexer.mll" 192 26094 26102 "lib/lexer.mll" 194 26220 26256
type(
  unit
)
"lib/lexer.mll" 191 26047 26055 "lib/lexer.mll" 194 26220 26256
type(
  unit
)
"lib/lexer.mll" 189 25997 26003 "lib/lexer.mll" 195 26257 26264
type(
  unit
)
"lib/lexer.ml" 585 26287 26291 "lib/lexer.ml" 585 26287 26292
type(
  int
)
"lib/lexer.mll" 198 26326 26338 "lib/lexer.mll" 198 26326 26341
type(
  string
)
ident(
  def msg "lib/lexer.mll" 203 26513 26521 "lib/lexer.mll" 203 26513 26533
)
"lib/lexer.mll" 199 26344 26354 "lib/lexer.mll" 199 26344 26361
type(
  (int -> int -> string, unit, string) format -> int -> int -> string
)
ident(
  ext_ref Printf.sprintf
)
"lib/lexer.mll" 200 26362 26374 "lib/lexer.mll" 200 26362 26441
type(
  (int -> int -> string, unit, string) format
)
"lib/lexer.mll" 201 26442 26454 "lib/lexer.mll" 201 26442 26459
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 201 26442 26454 "lib/lexer.mll" 201 26442 26468
type(
  int
)
"lib/lexer.mll" 201 26442 26470 "lib/lexer.mll" 201 26442 26475
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 201 26442 26470 "lib/lexer.mll" 201 26442 26484
type(
  int
)
"lib/lexer.mll" 201 26442 26485 "lib/lexer.mll" 201 26442 26486
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 201 26442 26487 "lib/lexer.mll" 201 26442 26492
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.mll" 201 26442 26487 "lib/lexer.mll" 201 26442 26500
type(
  int
)
"lib/lexer.mll" 201 26442 26469 "lib/lexer.mll" 201 26442 26501
type(
  int
)
"lib/lexer.mll" 199 26344 26354 "lib/lexer.mll" 201 26442 26501
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 203 26513 26521 "lib/lexer.mll" 203 26513 26529
type(
  string -> unit
)
ident(
  ext_ref Pervasives.failwith
)
"lib/lexer.mll" 203 26513 26530 "lib/lexer.mll" 203 26513 26533
type(
  string
)
ident(
  int_ref msg "lib/lexer.mll" 198 26326 26338 "lib/lexer.mll" 198 26326 26341
)
"lib/lexer.mll" 203 26513 26521 "lib/lexer.mll" 203 26513 26533
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 197 26318 26324 "lib/lexer.mll" 204 26534 26541
type(
  unit
)
"lib/lexer.ml" 597 26564 26568 "lib/lexer.ml" 597 26564 26585
type(
  int
)
ident(
  def __ocaml_lex_state "lib/lexer.ml" 597 26564 26589 "lib/lexer.ml" 598 26624 26692
)
"lib/lexer.ml" 597 26564 26589 "lib/lexer.ml" 597 26564 26595
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 597 26564 26589 "lib/lexer.ml" 597 26564 26614
type(
  Lexing.lexbuf -> unit
)
"lib/lexer.ml" 597 26564 26615 "lib/lexer.ml" 597 26564 26621
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 597 26564 26589 "lib/lexer.ml" 597 26564 26621
call(
  stack
)
type(
  unit
)
"lib/lexer.ml" 598 26624 26630 "lib/lexer.ml" 598 26624 26657
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> int -> unit
)
ident(
  int_ref __ocaml_lex_scan_string_rec "lib/lexer.ml" 454 22619 22623 "lib/lexer.ml" 454 22619 22650
)
"lib/lexer.ml" 598 26624 26658 "lib/lexer.ml" 598 26624 26661
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 454 22619 22651 "lib/lexer.ml" 454 22619 22654
)
"lib/lexer.ml" 598 26624 26662 "lib/lexer.ml" 598 26624 26667
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.ml" 454 22619 22655 "lib/lexer.ml" 454 22619 22660
)
"lib/lexer.ml" 598 26624 26668 "lib/lexer.ml" 598 26624 26674
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 454 22619 22661 "lib/lexer.ml" 454 22619 22667
)
"lib/lexer.ml" 598 26624 26675 "lib/lexer.ml" 598 26624 26692
type(
  int
)
ident(
  int_ref __ocaml_lex_state "lib/lexer.ml" 597 26564 26568 "lib/lexer.ml" 597 26564 26585
)
"lib/lexer.ml" 598 26624 26630 "lib/lexer.ml" 598 26624 26692
call(
  tail
)
type(
  unit
)
"lib/lexer.ml" 597 26564 26589 "lib/lexer.ml" 598 26624 26692
type(
  unit
)
"lib/lexer.ml" 455 22688 22690 "lib/lexer.ml" 598 26624 26692
type(
  unit
)
"lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  def scan_block_comment "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 600 26694 26717 "lib/lexer.ml" 600 26694 26720
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.ml" 600 26694 26721 "lib/lexer.ml" 601 26735 26792
)
"lib/lexer.ml" 600 26694 26721 "lib/lexer.ml" 600 26694 26725
type(
  Lexing.position list
)
ident(
  def locs "lib/lexer.ml" 600 26694 26726 "lib/lexer.ml" 601 26735 26792
)
"lib/lexer.ml" 600 26694 26726 "lib/lexer.ml" 600 26694 26732
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.ml" 601 26735 26739 "lib/lexer.ml" 601 26735 26792
)
"lib/lexer.ml" 601 26735 26739 "lib/lexer.ml" 601 26735 26773
type(
  X.Quoted_string_buffer.t ->
  Lexing.position list -> Lexing.lexbuf -> int -> unit
)
ident(
  int_ref __ocaml_lex_scan_block_comment_rec "lib/lexer.ml" 602 26793 26797 "lib/lexer.ml" 602 26793 26831
)
"lib/lexer.ml" 601 26735 26774 "lib/lexer.ml" 601 26735 26777
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 600 26694 26717 "lib/lexer.ml" 600 26694 26720
)
"lib/lexer.ml" 601 26735 26778 "lib/lexer.ml" 601 26735 26782
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 600 26694 26721 "lib/lexer.ml" 600 26694 26725
)
"lib/lexer.ml" 601 26735 26783 "lib/lexer.ml" 601 26735 26789
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 600 26694 26726 "lib/lexer.ml" 600 26694 26732
)
"lib/lexer.ml" 601 26735 26790 "lib/lexer.ml" 601 26735 26792
type(
  int
)
"lib/lexer.ml" 601 26735 26739 "lib/lexer.ml" 601 26735 26792
call(
  tail
)
type(
  unit
)
"lib/lexer.ml" 602 26793 26797 "lib/lexer.ml" 602 26793 26831
type(
  X.Quoted_string_buffer.t ->
  Lexing.position list -> Lexing.lexbuf -> int -> unit
)
ident(
  def __ocaml_lex_scan_block_comment_rec "lib/lexer.ml" 360 20224 20224 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 664 28625 28699
)
"lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
type(
  Lexing.position list
)
ident(
  def locs "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 664 28625 28699
)
"lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.ml" 602 26793 26848 "lib/lexer.ml" 664 28625 28699
)
"lib/lexer.ml" 602 26793 26848 "lib/lexer.ml" 602 26793 26865
type(
  int
)
ident(
  def __ocaml_lex_state "lib/lexer.ml" 603 26868 26870 "lib/lexer.ml" 664 28625 28699
)
"lib/lexer.ml" 603 26868 26876 "lib/lexer.ml" 603 26868 26889
type(
  Lexing.lex_tables -> int -> Lexing.lexbuf -> int
)
ident(
  ext_ref Lexing.engine
)
"lib/lexer.ml" 603 26868 26890 "lib/lexer.ml" 603 26868 26908
type(
  Lexing.lex_tables
)
ident(
  int_ref __ocaml_lex_tables "lib/lexer.ml" 83 2189 2193 "lib/lexer.ml" 83 2189 2211
)
"lib/lexer.ml" 603 26868 26909 "lib/lexer.ml" 603 26868 26926
type(
  int
)
ident(
  int_ref __ocaml_lex_state "lib/lexer.ml" 602 26793 26848 "lib/lexer.ml" 602 26793 26865
)
"lib/lexer.ml" 603 26868 26927 "lib/lexer.ml" 603 26868 26933
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.ml" 603 26868 26876 "lib/lexer.ml" 603 26868 26933
call(
  stack
)
type(
  int
)
"lib/lexer.ml" 604 26939 26947 "lib/lexer.ml" 604 26939 26948
type(
  int
)
"lib/lexer.mll" 208 26974 26982 "lib/lexer.mll" 208 26974 27013
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 208 26974 27014 "lib/lexer.mll" 208 26974 27017
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 208 26974 27018 "lib/lexer.mll" 208 26974 27024
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 208 26974 26982 "lib/lexer.mll" 208 26974 27024
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 209 27026 27034 "lib/lexer.mll" 209 27026 27047
type(
  Lexing.lexbuf -> int -> unit
)
ident(
  int_ref found_newline "lib/lexer.mll" 32 672 678 "lib/lexer.mll" 32 672 691
)
"lib/lexer.mll" 209 27026 27048 "lib/lexer.mll" 209 27026 27054
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 209 27026 27055 "lib/lexer.mll" 209 27026 27056
type(
  int
)
"lib/lexer.mll" 209 27026 27034 "lib/lexer.mll" 209 27026 27056
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 209 27026 27058 "lib/lexer.mll" 209 27026 27076
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_block_comment "lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
)
"lib/lexer.mll" 209 27026 27077 "lib/lexer.mll" 209 27026 27080
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 209 27026 27081 "lib/lexer.mll" 209 27026 27085
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.mll" 209 27026 27086 "lib/lexer.mll" 209 27026 27092
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 209 27026 27058 "lib/lexer.mll" 209 27026 27092
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 209 27026 27034 "lib/lexer.mll" 209 27026 27092
type(
  unit
)
"lib/lexer.mll" 208 26974 26980 "lib/lexer.mll" 209 27026 27094
type(
  unit
)
"lib/lexer.ml" 610 27117 27121 "lib/lexer.ml" 610 27117 27122
type(
  int
)
"lib/lexer.mll" 211 27148 27156 "lib/lexer.mll" 211 27148 27187
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 211 27148 27188 "lib/lexer.mll" 211 27148 27191
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 211 27148 27192 "lib/lexer.mll" 211 27148 27198
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 211 27148 27156 "lib/lexer.mll" 211 27148 27198
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 212 27200 27208 "lib/lexer.mll" 212 27200 27226
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_block_comment "lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
)
"lib/lexer.mll" 212 27200 27227 "lib/lexer.mll" 212 27200 27230
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 212 27200 27231 "lib/lexer.mll" 212 27200 27235
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.mll" 212 27200 27236 "lib/lexer.mll" 212 27200 27242
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 212 27200 27208 "lib/lexer.mll" 212 27200 27242
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 211 27148 27154 "lib/lexer.mll" 212 27200 27244
type(
  unit
)
"lib/lexer.ml" 616 27267 27271 "lib/lexer.ml" 616 27267 27272
type(
  int
)
"lib/lexer.mll" 215 27306 27314 "lib/lexer.mll" 215 27306 27345
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 215 27306 27346 "lib/lexer.mll" 215 27306 27349
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 215 27306 27350 "lib/lexer.mll" 215 27306 27356
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 215 27306 27314 "lib/lexer.mll" 215 27306 27356
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 216 27358 27370 "lib/lexer.mll" 216 27358 27373
type(
  Lexing.position
)
ident(
  def cur "lib/lexer.mll" 217 27399 27407 "lib/lexer.mll" 219 27501 27543
)
"lib/lexer.mll" 216 27358 27376 "lib/lexer.mll" 216 27358 27388
type(
  Lexing.lexbuf -> Lexing.position
)
ident(
  ext_ref Lexing.lexeme_end_p
)
"lib/lexer.mll" 216 27358 27389 "lib/lexer.mll" 216 27358 27395
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 216 27358 27376 "lib/lexer.mll" 216 27358 27395
call(
  stack
)
type(
  Lexing.position
)
"lib/lexer.mll" 217 27399 27411 "lib/lexer.mll" 217 27399 27416
type(
  Lexing.position
)
ident(
  def start "lib/lexer.mll" 218 27463 27471 "lib/lexer.mll" 219 27501 27543
)
"lib/lexer.mll" 217 27399 27421 "lib/lexer.mll" 217 27399 27424
type(
  Lexing.position
)
ident(
  int_ref cur "lib/lexer.mll" 216 27358 27370 "lib/lexer.mll" 216 27358 27373
)
"lib/lexer.mll" 217 27399 27441 "lib/lexer.mll" 217 27399 27444
type(
  Lexing.position
)
ident(
  int_ref cur "lib/lexer.mll" 216 27358 27370 "lib/lexer.mll" 216 27358 27373
)
"lib/lexer.mll" 217 27399 27441 "lib/lexer.mll" 217 27399 27453
type(
  int
)
"lib/lexer.mll" 217 27399 27454 "lib/lexer.mll" 217 27399 27455
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 217 27399 27456 "lib/lexer.mll" 217 27399 27457
type(
  int
)
"lib/lexer.mll" 217 27399 27441 "lib/lexer.mll" 217 27399 27457
type(
  int
)
"lib/lexer.mll" 217 27399 27419 "lib/lexer.mll" 217 27399 27459
type(
  Lexing.position
)
"lib/lexer.mll" 218 27463 27471 "lib/lexer.mll" 218 27463 27482
type(
  X.Quoted_string_buffer.t -> Lexing.position -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_string "lib/lexer.ml" 452 22532 22536 "lib/lexer.ml" 452 22532 22547
)
"lib/lexer.mll" 218 27463 27483 "lib/lexer.mll" 218 27463 27486
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 218 27463 27487 "lib/lexer.mll" 218 27463 27492
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.mll" 217 27399 27411 "lib/lexer.mll" 217 27399 27416
)
"lib/lexer.mll" 218 27463 27493 "lib/lexer.mll" 218 27463 27499
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 218 27463 27471 "lib/lexer.mll" 218 27463 27499
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 219 27501 27509 "lib/lexer.mll" 219 27501 27527
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_block_comment "lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
)
"lib/lexer.mll" 219 27501 27528 "lib/lexer.mll" 219 27501 27531
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 219 27501 27532 "lib/lexer.mll" 219 27501 27536
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.mll" 219 27501 27537 "lib/lexer.mll" 219 27501 27543
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 219 27501 27509 "lib/lexer.mll" 219 27501 27543
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 218 27463 27471 "lib/lexer.mll" 219 27501 27543
type(
  unit
)
"lib/lexer.mll" 217 27399 27407 "lib/lexer.mll" 219 27501 27543
type(
  unit
)
"lib/lexer.mll" 216 27358 27366 "lib/lexer.mll" 219 27501 27543
type(
  unit
)
"lib/lexer.mll" 214 27298 27304 "lib/lexer.mll" 220 27544 27551
type(
  unit
)
"lib/lexer.ml" 627 27574 27578 "lib/lexer.ml" 627 27574 27579
type(
  int
)
"lib/lexer.mll" 223 27611 27617 "lib/lexer.mll" 223 27611 27648
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 223 27611 27649 "lib/lexer.mll" 223 27611 27652
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 223 27611 27653 "lib/lexer.mll" 223 27611 27659
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 223 27611 27617 "lib/lexer.mll" 223 27611 27659
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 224 27661 27671 "lib/lexer.mll" 224 27661 27674
type(
  Lexing.position
)
ident(
  def cur "lib/lexer.mll" 225 27700 27706 "lib/lexer.mll" 226 27762 27813
)
"lib/lexer.mll" 224 27661 27677 "lib/lexer.mll" 224 27661 27689
type(
  Lexing.lexbuf -> Lexing.position
)
ident(
  ext_ref Lexing.lexeme_end_p
)
"lib/lexer.mll" 224 27661 27690 "lib/lexer.mll" 224 27661 27696
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 224 27661 27677 "lib/lexer.mll" 224 27661 27696
call(
  stack
)
type(
  Lexing.position
)
"lib/lexer.mll" 225 27700 27710 "lib/lexer.mll" 225 27700 27715
type(
  Lexing.position
)
ident(
  def start "lib/lexer.mll" 226 27762 27768 "lib/lexer.mll" 226 27762 27813
)
"lib/lexer.mll" 225 27700 27720 "lib/lexer.mll" 225 27700 27723
type(
  Lexing.position
)
ident(
  int_ref cur "lib/lexer.mll" 224 27661 27671 "lib/lexer.mll" 224 27661 27674
)
"lib/lexer.mll" 225 27700 27740 "lib/lexer.mll" 225 27700 27743
type(
  Lexing.position
)
ident(
  int_ref cur "lib/lexer.mll" 224 27661 27671 "lib/lexer.mll" 224 27661 27674
)
"lib/lexer.mll" 225 27700 27740 "lib/lexer.mll" 225 27700 27752
type(
  int
)
"lib/lexer.mll" 225 27700 27753 "lib/lexer.mll" 225 27700 27754
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 225 27700 27755 "lib/lexer.mll" 225 27700 27756
type(
  int
)
"lib/lexer.mll" 225 27700 27740 "lib/lexer.mll" 225 27700 27756
type(
  int
)
"lib/lexer.mll" 225 27700 27718 "lib/lexer.mll" 225 27700 27758
type(
  Lexing.position
)
"lib/lexer.mll" 226 27762 27768 "lib/lexer.mll" 226 27762 27786
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_block_comment "lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
)
"lib/lexer.mll" 226 27762 27787 "lib/lexer.mll" 226 27762 27790
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 226 27762 27792 "lib/lexer.mll" 226 27762 27797
type(
  Lexing.position
)
ident(
  int_ref start "lib/lexer.mll" 225 27700 27710 "lib/lexer.mll" 225 27700 27715
)
"lib/lexer.mll" 226 27762 27801 "lib/lexer.mll" 226 27762 27805
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.mll" 226 27762 27791 "lib/lexer.mll" 226 27762 27806
type(
  Lexing.position list
)
"lib/lexer.mll" 226 27762 27807 "lib/lexer.mll" 226 27762 27813
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 226 27762 27768 "lib/lexer.mll" 226 27762 27813
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 225 27700 27706 "lib/lexer.mll" 226 27762 27813
type(
  unit
)
"lib/lexer.mll" 224 27661 27667 "lib/lexer.mll" 226 27762 27813
type(
  unit
)
"lib/lexer.mll" 222 27605 27609 "lib/lexer.mll" 227 27814 27819
type(
  unit
)
"lib/lexer.ml" 637 27842 27846 "lib/lexer.ml" 637 27842 27847
type(
  int
)
"lib/lexer.mll" 230 27881 27889 "lib/lexer.mll" 230 27881 27920
type(
  X.Quoted_string_buffer.t -> Lexing.lexbuf -> unit
)
ident(
  int_ref X.Quoted_string_buffer.add_lexeme "lib/lexer.mll" 58 1484 1490 "lib/lexer.mll" 58 1484 1526
)
"lib/lexer.mll" 230 27881 27921 "lib/lexer.mll" 230 27881 27924
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 230 27881 27925 "lib/lexer.mll" 230 27881 27931
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 230 27881 27889 "lib/lexer.mll" 230 27881 27931
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 231 27933 27947 "lib/lexer.mll" 231 27933 27951
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.mll" 232 27957 27968 "lib/lexer.mll" 232 27957 27969
type(
  Lexing.position
)
"lib/lexer.mll" 232 27957 27967 "lib/lexer.mll" 232 27957 27970
type(
  Lexing.position list
)
"lib/lexer.mll" 232 27957 27974 "lib/lexer.mll" 232 27957 27976
type(
  unit
)
"lib/lexer.mll" 233 28007 28017 "lib/lexer.mll" 233 28007 28018
type(
  Lexing.position
)
"lib/lexer.mll" 233 28007 28023 "lib/lexer.mll" 233 28007 28024
type(
  Lexing.position
)
"lib/lexer.mll" 233 28007 28028 "lib/lexer.mll" 233 28007 28029
type(
  Lexing.position list
)
"lib/lexer.mll" 233 28007 28023 "lib/lexer.mll" 233 28007 28029
type(
  Lexing.position list
)
"lib/lexer.mll" 233 28007 28033 "lib/lexer.mll" 233 28007 28034
ident(
  def t "lib/lexer.mll" 233 28007 28039 "lib/lexer.mll" 233 28007 28070
)
"lib/lexer.mll" 233 28007 28022 "lib/lexer.mll" 233 28007 28035
type(
  Lexing.position list
)
"lib/lexer.mll" 233 28007 28017 "lib/lexer.mll" 233 28007 28035
type(
  Lexing.position list
)
"lib/lexer.mll" 233 28007 28039 "lib/lexer.mll" 233 28007 28057
type(
  X.Quoted_string_buffer.t -> Lexing.position list -> Lexing.lexbuf -> unit
)
ident(
  int_ref scan_block_comment "lib/lexer.ml" 600 26694 26698 "lib/lexer.ml" 600 26694 26716
)
"lib/lexer.mll" 233 28007 28058 "lib/lexer.mll" 233 28007 28061
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.mll" 233 28007 28062 "lib/lexer.mll" 233 28007 28063
type(
  Lexing.position list
)
ident(
  int_ref t "lib/lexer.mll" 233 28007 28022 "lib/lexer.mll" 233 28007 28035
)
"lib/lexer.mll" 233 28007 28064 "lib/lexer.mll" 233 28007 28070
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.mll" 233 28007 28039 "lib/lexer.mll" 233 28007 28070
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 234 28071 28081 "lib/lexer.mll" 234 28071 28083
type(
  Lexing.position list
)
"lib/lexer.mll" 234 28071 28094 "lib/lexer.mll" 234 28071 28099
type(
  bool
)
"lib/lexer.mll" 234 28071 28087 "lib/lexer.mll" 234 28071 28099
type(
  unit
)
"lib/lexer.mll" 231 27933 27941 "lib/lexer.mll" 234 28071 28099
type(
  unit
)
"lib/lexer.mll" 229 27873 27879 "lib/lexer.mll" 235 28118 28125
type(
  unit
)
"lib/lexer.ml" 648 28148 28152 "lib/lexer.ml" 648 28148 28153
type(
  int
)
"lib/lexer.mll" 238 28187 28201 "lib/lexer.mll" 238 28187 28205
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.mll" 239 28211 28221 "lib/lexer.mll" 239 28211 28223
type(
  Lexing.position list
)
"lib/lexer.mll" 239 28211 28234 "lib/lexer.mll" 239 28211 28239
type(
  bool
)
"lib/lexer.mll" 239 28211 28227 "lib/lexer.mll" 239 28211 28239
type(
  unit
)
"lib/lexer.mll" 240 28240 28252 "lib/lexer.mll" 240 28240 28260
type(
  int
)
ident(
  def pos_lnum "lib/lexer.mll" 241 28305 28317 "lib/lexer.mll" 246 28510 28534
)
"lib/lexer.mll" 240 28240 28262 "lib/lexer.mll" 240 28240 28269
type(
  int
)
ident(
  def pos_bol "lib/lexer.mll" 241 28305 28317 "lib/lexer.mll" 246 28510 28534
)
"lib/lexer.mll" 240 28240 28271 "lib/lexer.mll" 240 28240 28279
type(
  int
)
ident(
  def pos_cnum "lib/lexer.mll" 241 28305 28317 "lib/lexer.mll" 246 28510 28534
)
"lib/lexer.mll" 240 28240 28293 "lib/lexer.mll" 240 28240 28294
type(
  string
)
"lib/lexer.mll" 240 28240 28250 "lib/lexer.mll" 240 28240 28296
type(
  Lexing.position
)
"lib/lexer.mll" 240 28240 28300 "lib/lexer.mll" 240 28240 28301
type(
  Lexing.position list
)
"lib/lexer.mll" 240 28240 28250 "lib/lexer.mll" 240 28240 28301
type(
  Lexing.position list
)
"lib/lexer.mll" 241 28305 28321 "lib/lexer.mll" 241 28305 28324
type(
  string
)
ident(
  def msg "lib/lexer.mll" 246 28510 28522 "lib/lexer.mll" 246 28510 28534
)
"lib/lexer.mll" 242 28327 28341 "lib/lexer.mll" 242 28327 28348
type(
  (int -> int -> string, unit, string) format -> int -> int -> string
)
ident(
  ext_ref Printf.sprintf
)
"lib/lexer.mll" 242 28327 28349 "lib/lexer.mll" 243 28386 28448
type(
  (int -> int -> string, unit, string) format
)
"lib/lexer.mll" 244 28449 28465 "lib/lexer.mll" 244 28449 28473
type(
  int
)
ident(
  int_ref pos_lnum "lib/lexer.mll" 240 28240 28252 "lib/lexer.mll" 240 28240 28260
)
"lib/lexer.mll" 244 28449 28475 "lib/lexer.mll" 244 28449 28483
type(
  int
)
ident(
  int_ref pos_cnum "lib/lexer.mll" 240 28240 28271 "lib/lexer.mll" 240 28240 28279
)
"lib/lexer.mll" 244 28449 28484 "lib/lexer.mll" 244 28449 28485
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"lib/lexer.mll" 244 28449 28486 "lib/lexer.mll" 244 28449 28493
type(
  int
)
ident(
  int_ref pos_bol "lib/lexer.mll" 240 28240 28262 "lib/lexer.mll" 240 28240 28269
)
"lib/lexer.mll" 244 28449 28474 "lib/lexer.mll" 244 28449 28494
type(
  int
)
"lib/lexer.mll" 242 28327 28341 "lib/lexer.mll" 244 28449 28494
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 246 28510 28522 "lib/lexer.mll" 246 28510 28530
type(
  string -> unit
)
ident(
  ext_ref Pervasives.failwith
)
"lib/lexer.mll" 246 28510 28531 "lib/lexer.mll" 246 28510 28534
type(
  string
)
ident(
  int_ref msg "lib/lexer.mll" 241 28305 28321 "lib/lexer.mll" 241 28305 28324
)
"lib/lexer.mll" 246 28510 28522 "lib/lexer.mll" 246 28510 28534
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 241 28305 28317 "lib/lexer.mll" 246 28510 28534
type(
  unit
)
"lib/lexer.mll" 237 28179 28185 "lib/lexer.mll" 247 28535 28542
type(
  unit
)
"lib/lexer.ml" 663 28565 28569 "lib/lexer.ml" 663 28565 28586
type(
  int
)
ident(
  def __ocaml_lex_state "lib/lexer.ml" 663 28565 28590 "lib/lexer.ml" 664 28625 28699
)
"lib/lexer.ml" 663 28565 28590 "lib/lexer.ml" 663 28565 28596
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.ml" 663 28565 28590 "lib/lexer.ml" 663 28565 28615
type(
  Lexing.lexbuf -> unit
)
"lib/lexer.ml" 663 28565 28616 "lib/lexer.ml" 663 28565 28622
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.ml" 663 28565 28590 "lib/lexer.ml" 663 28565 28622
call(
  stack
)
type(
  unit
)
"lib/lexer.ml" 664 28625 28631 "lib/lexer.ml" 664 28625 28665
type(
  X.Quoted_string_buffer.t ->
  Lexing.position list -> Lexing.lexbuf -> int -> unit
)
ident(
  int_ref __ocaml_lex_scan_block_comment_rec "lib/lexer.ml" 602 26793 26797 "lib/lexer.ml" 602 26793 26831
)
"lib/lexer.ml" 664 28625 28666 "lib/lexer.ml" 664 28625 28669
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.ml" 602 26793 26832 "lib/lexer.ml" 602 26793 26835
)
"lib/lexer.ml" 664 28625 28670 "lib/lexer.ml" 664 28625 28674
type(
  Lexing.position list
)
ident(
  int_ref locs "lib/lexer.ml" 602 26793 26836 "lib/lexer.ml" 602 26793 26840
)
"lib/lexer.ml" 664 28625 28675 "lib/lexer.ml" 664 28625 28681
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.ml" 602 26793 26841 "lib/lexer.ml" 602 26793 26847
)
"lib/lexer.ml" 664 28625 28682 "lib/lexer.ml" 664 28625 28699
type(
  int
)
ident(
  int_ref __ocaml_lex_state "lib/lexer.ml" 663 28565 28569 "lib/lexer.ml" 663 28565 28586
)
"lib/lexer.ml" 664 28625 28631 "lib/lexer.ml" 664 28625 28699
call(
  tail
)
type(
  unit
)
"lib/lexer.ml" 663 28565 28590 "lib/lexer.ml" 664 28625 28699
type(
  unit
)
"lib/lexer.ml" 603 26868 26870 "lib/lexer.ml" 664 28625 28699
type(
  unit
)
"lib/lexer.mll" 251 28782 28790 "lib/lexer.mll" 251 28782 28794
type(
  ?buf:Buffer.t -> Lexing.lexbuf -> X.Token.t
)
ident(
  def main "lib/lexer.mll" 259 28994 29008 "lib/lexer.mll" 261 29010 29015
)
"lib/lexer.mll" 251 28782 28796 "lib/lexer.mll" 251 28782 28799
type(
  Buffer.t option
)
ident(
  def buf "lib/lexer.mll" 252 28802 28808 "lib/lexer.mll" 259 28994 29008
)
"lib/lexer.mll" 252 28802 28812 "lib/lexer.mll" 252 28802 28815
type(
  X.Quoted_string_buffer.t
)
ident(
  def buf "lib/lexer.mll" 259 28994 29000 "lib/lexer.mll" 259 28994 29008
)
"lib/lexer.mll" 253 28818 28832 "lib/lexer.mll" 253 28818 28835
type(
  Buffer.t option
)
ident(
  int_ref buf "lib/lexer.mll" 251 28782 28796 "lib/lexer.mll" 251 28782 28799
)
"lib/lexer.mll" 254 28841 28851 "lib/lexer.mll" 254 28841 28855
type(
  Buffer.t option
)
"lib/lexer.mll" 254 28841 28859 "lib/lexer.mll" 254 28841 28886
type(
  int -> X.Quoted_string_buffer.t
)
ident(
  int_ref X.Quoted_string_buffer.create "lib/lexer.mll" 55 1357 1363 "lib/lexer.mll" 55 1357 1384
)
"lib/lexer.mll" 254 28841 28887 "lib/lexer.mll" 254 28841 28889
type(
  int
)
"lib/lexer.mll" 254 28841 28859 "lib/lexer.mll" 254 28841 28889
call(
  stack
)
type(
  X.Quoted_string_buffer.t
)
"lib/lexer.mll" 255 28890 28905 "lib/lexer.mll" 255 28890 28908
type(
  Buffer.t
)
ident(
  def buf "lib/lexer.mll" 256 28912 28922 "lib/lexer.mll" 257 28940 28984
)
"lib/lexer.mll" 255 28890 28900 "lib/lexer.mll" 255 28890 28908
type(
  Buffer.t option
)
"lib/lexer.mll" 256 28912 28922 "lib/lexer.mll" 256 28912 28934
type(
  Buffer.t -> unit
)
ident(
  ext_ref Buffer.clear
)
"lib/lexer.mll" 256 28912 28935 "lib/lexer.mll" 256 28912 28938
type(
  Buffer.t
)
ident(
  int_ref buf "lib/lexer.mll" 255 28890 28905 "lib/lexer.mll" 255 28890 28908
)
"lib/lexer.mll" 256 28912 28922 "lib/lexer.mll" 256 28912 28938
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 257 28940 28950 "lib/lexer.mll" 257 28940 28980
type(
  Buffer.t -> X.Quoted_string_buffer.t
)
ident(
  int_ref X.Quoted_string_buffer.of_buffer "lib/lexer.mll" 60 1555 1561 "lib/lexer.mll" 60 1555 1590
)
"lib/lexer.mll" 257 28940 28981 "lib/lexer.mll" 257 28940 28984
type(
  Buffer.t
)
ident(
  int_ref buf "lib/lexer.mll" 255 28890 28905 "lib/lexer.mll" 255 28890 28908
)
"lib/lexer.mll" 257 28940 28950 "lib/lexer.mll" 257 28940 28984
call(
  stack
)
type(
  X.Quoted_string_buffer.t
)
"lib/lexer.mll" 256 28912 28922 "lib/lexer.mll" 257 28940 28984
type(
  X.Quoted_string_buffer.t
)
"lib/lexer.mll" 253 28818 28826 "lib/lexer.mll" 257 28940 28984
type(
  X.Quoted_string_buffer.t
)
"lib/lexer.mll" 259 28994 29000 "lib/lexer.mll" 259 28994 29004
type(
  X.Token.s
)
ident(
  int_ref main "lib/lexer.ml" 360 20224 20232 "lib/lexer.ml" 360 20224 20236
)
"lib/lexer.mll" 259 28994 29005 "lib/lexer.mll" 259 28994 29008
type(
  X.Quoted_string_buffer.t
)
ident(
  int_ref buf "lib/lexer.mll" 252 28802 28812 "lib/lexer.mll" 252 28802 28815
)
"lib/lexer.mll" 259 28994 29000 "lib/lexer.mll" 259 28994 29008
call(
  tail
)
type(
  Lexing.lexbuf -> X.Token.t
)
"lib/lexer.mll" 252 28802 28808 "lib/lexer.mll" 259 28994 29008
type(
  Lexing.lexbuf -> X.Token.t
)
"lib/lexer.mll" 267 29168 29180 "lib/lexer.mll" 267 29168 29190
type(
  'a -> 'b -> unit
)
ident(
  def add_lexeme "lib/lexer.mll" 268 29200 29208 "lib/lexer.mll" 269 29228 29237
)
"lib/lexer.mll" 267 29168 29191 "lib/lexer.mll" 267 29168 29192
type(
  'a
)
"lib/lexer.mll" 267 29168 29193 "lib/lexer.mll" 267 29168 29194
type(
  'b
)
"lib/lexer.mll" 267 29168 29197 "lib/lexer.mll" 267 29168 29199
type(
  unit
)
"lib/lexer.mll" 268 29200 29212 "lib/lexer.mll" 268 29200 29221
type(
  'c -> 'c
)
ident(
  def of_buffer "lib/lexer.mll" 268 29200 29227 "lib/lexer.mll" 269 29228 29237
)
"lib/lexer.mll" 268 29200 29222 "lib/lexer.mll" 268 29200 29223
type(
  'c
)
ident(
  def b "lib/lexer.mll" 268 29200 29226 "lib/lexer.mll" 268 29200 29227
)
"lib/lexer.mll" 268 29200 29226 "lib/lexer.mll" 268 29200 29227
type(
  'c
)
ident(
  int_ref b "lib/lexer.mll" 268 29200 29222 "lib/lexer.mll" 268 29200 29223
)
"lib/lexer.mll" 274 29371 29383 "lib/lexer.mll" 274 29371 29386
type(
  Parser.token
)
ident(
  def eof "lib/lexer.mll" 275 29393 29401 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 274 29371 29389 "lib/lexer.mll" 274 29371 29392
type(
  Parser.token
)
"lib/lexer.mll" 275 29393 29405 "lib/lexer.mll" 275 29393 29411
type(
  Parser.token
)
ident(
  def lparen "lib/lexer.mll" 276 29421 29429 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 275 29393 29414 "lib/lexer.mll" 275 29393 29420
type(
  Parser.token
)
"lib/lexer.mll" 276 29421 29433 "lib/lexer.mll" 276 29421 29439
type(
  Parser.token
)
ident(
  def rparen "lib/lexer.mll" 277 29449 29457 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 276 29421 29442 "lib/lexer.mll" 276 29421 29448
type(
  Parser.token
)
"lib/lexer.mll" 277 29449 29461 "lib/lexer.mll" 277 29449 29470
type(
  Parser.token
)
ident(
  def hash_semi "lib/lexer.mll" 278 29483 29491 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 277 29449 29473 "lib/lexer.mll" 277 29449 29482
type(
  Parser.token
)
"lib/lexer.mll" 278 29483 29495 "lib/lexer.mll" 278 29483 29508
type(
  string -> Parser.token
)
ident(
  def simple_string "lib/lexer.mll" 279 29522 29530 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 278 29483 29509 "lib/lexer.mll" 278 29483 29510
type(
  string
)
ident(
  def x "lib/lexer.mll" 278 29483 29513 "lib/lexer.mll" 278 29483 29521
)
"lib/lexer.mll" 278 29483 29520 "lib/lexer.mll" 278 29483 29521
type(
  string
)
ident(
  int_ref x "lib/lexer.mll" 278 29483 29509 "lib/lexer.mll" 278 29483 29510
)
"lib/lexer.mll" 278 29483 29513 "lib/lexer.mll" 278 29483 29521
type(
  Parser.token
)
"lib/lexer.mll" 279 29522 29534 "lib/lexer.mll" 279 29522 29547
type(
  'd -> Buffer.t -> Parser.token
)
ident(
  def quoted_string "lib/lexer.mll" 280 29585 29593 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 279 29522 29548 "lib/lexer.mll" 279 29522 29549
type(
  'd
)
"lib/lexer.mll" 279 29522 29550 "lib/lexer.mll" 279 29522 29553
type(
  Buffer.t
)
ident(
  def buf "lib/lexer.mll" 279 29522 29556 "lib/lexer.mll" 279 29522 29584
)
"lib/lexer.mll" 279 29522 29564 "lib/lexer.mll" 279 29522 29579
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"lib/lexer.mll" 279 29522 29580 "lib/lexer.mll" 279 29522 29583
type(
  Buffer.t
)
ident(
  int_ref buf "lib/lexer.mll" 279 29522 29550 "lib/lexer.mll" 279 29522 29553
)
"lib/lexer.mll" 279 29522 29563 "lib/lexer.mll" 279 29522 29584
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 279 29522 29556 "lib/lexer.mll" 279 29522 29584
type(
  Parser.token
)
"lib/lexer.mll" 280 29585 29597 "lib/lexer.mll" 280 29585 29610
type(
  'e -> main:('f -> 'g -> 'h) -> 'f -> 'g -> 'h
)
ident(
  def block_comment "lib/lexer.mll" 282 29661 29669 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 280 29585 29611 "lib/lexer.mll" 280 29585 29615
type(
  'e
)
ident(
  def _pos "lib/lexer.mll" 280 29585 29616 "lib/lexer.mll" 281 29635 29660
)
"lib/lexer.mll" 280 29585 29617 "lib/lexer.mll" 280 29585 29621
type(
  'f -> 'g -> 'h
)
ident(
  def main "lib/lexer.mll" 280 29585 29622 "lib/lexer.mll" 281 29635 29660
)
"lib/lexer.mll" 280 29585 29622 "lib/lexer.mll" 280 29585 29625
type(
  'f
)
ident(
  def buf "lib/lexer.mll" 280 29585 29626 "lib/lexer.mll" 281 29635 29660
)
"lib/lexer.mll" 280 29585 29626 "lib/lexer.mll" 280 29585 29632
type(
  'g
)
ident(
  def lexbuf "lib/lexer.mll" 281 29635 29645 "lib/lexer.mll" 281 29635 29660
)
"lib/lexer.mll" 281 29635 29645 "lib/lexer.mll" 281 29635 29649
type(
  'f -> 'g -> 'h
)
ident(
  int_ref main "lib/lexer.mll" 280 29585 29617 "lib/lexer.mll" 280 29585 29621
)
"lib/lexer.mll" 281 29635 29650 "lib/lexer.mll" 281 29635 29653
type(
  'f
)
ident(
  int_ref buf "lib/lexer.mll" 280 29585 29622 "lib/lexer.mll" 280 29585 29625
)
"lib/lexer.mll" 281 29635 29654 "lib/lexer.mll" 281 29635 29660
type(
  'g
)
ident(
  int_ref lexbuf "lib/lexer.mll" 280 29585 29626 "lib/lexer.mll" 280 29585 29632
)
"lib/lexer.mll" 281 29635 29645 "lib/lexer.mll" 281 29635 29660
call(
  tail
)
type(
  'h
)
"lib/lexer.mll" 282 29661 29673 "lib/lexer.mll" 282 29661 29680
type(
  'i -> main:('j -> 'k -> 'l) -> 'j -> 'k -> 'l
)
ident(
  def comment "lib/lexer.mll" 283 29706 29731 "lib/lexer.mll" 284 29763 29772
)
"lib/lexer.mll" 282 29661 29681 "lib/lexer.mll" 282 29661 29686
type(
  'i
)
ident(
  def _text "lib/lexer.mll" 282 29661 29687 "lib/lexer.mll" 283 29706 29731
)
"lib/lexer.mll" 282 29661 29688 "lib/lexer.mll" 282 29661 29692
type(
  'j -> 'k -> 'l
)
ident(
  def main "lib/lexer.mll" 282 29661 29693 "lib/lexer.mll" 283 29706 29731
)
"lib/lexer.mll" 282 29661 29693 "lib/lexer.mll" 282 29661 29696
type(
  'j
)
ident(
  def buf "lib/lexer.mll" 282 29661 29697 "lib/lexer.mll" 283 29706 29731
)
"lib/lexer.mll" 282 29661 29697 "lib/lexer.mll" 282 29661 29703
type(
  'k
)
ident(
  def lexbuf "lib/lexer.mll" 283 29706 29716 "lib/lexer.mll" 283 29706 29731
)
"lib/lexer.mll" 283 29706 29716 "lib/lexer.mll" 283 29706 29720
type(
  'j -> 'k -> 'l
)
ident(
  int_ref main "lib/lexer.mll" 282 29661 29688 "lib/lexer.mll" 282 29661 29692
)
"lib/lexer.mll" 283 29706 29721 "lib/lexer.mll" 283 29706 29724
type(
  'j
)
ident(
  int_ref buf "lib/lexer.mll" 282 29661 29693 "lib/lexer.mll" 282 29661 29696
)
"lib/lexer.mll" 283 29706 29725 "lib/lexer.mll" 283 29706 29731
type(
  'k
)
ident(
  int_ref lexbuf "lib/lexer.mll" 282 29661 29697 "lib/lexer.mll" 282 29661 29703
)
"lib/lexer.mll" 283 29706 29716 "lib/lexer.mll" 283 29706 29731
call(
  tail
)
type(
  'l
)
"lib/lexer.mll" 264 29085 29089 "lib/lexer.mll" 285 29773 29781
call(
  stack
)
"lib/lexer.mll" 294 29955 29967 "lib/lexer.mll" 294 29955 29973
type(
  int -> t
)
ident(
  def create "lib/lexer.mll" 295 30033 30041 "lib/lexer.mll" 300 30403 30412
)
"lib/lexer.mll" 294 29955 29974 "lib/lexer.mll" 294 29955 29975
type(
  int
)
ident(
  def n "lib/lexer.mll" 294 29955 29978 "lib/lexer.mll" 294 29955 30032
)
"lib/lexer.mll" 294 29955 29990 "lib/lexer.mll" 294 29955 30003
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"lib/lexer.mll" 294 29955 30004 "lib/lexer.mll" 294 29955 30005
type(
  int
)
ident(
  int_ref n "lib/lexer.mll" 294 29955 29974 "lib/lexer.mll" 294 29955 29975
)
"lib/lexer.mll" 294 29955 29990 "lib/lexer.mll" 294 29955 30005
call(
  stack
)
type(
  Buffer.t
)
"lib/lexer.mll" 294 29955 30016 "lib/lexer.mll" 294 29955 30029
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"lib/lexer.mll" 294 29955 30030 "lib/lexer.mll" 294 29955 30031
type(
  int
)
ident(
  int_ref n "lib/lexer.mll" 294 29955 29974 "lib/lexer.mll" 294 29955 29975
)
"lib/lexer.mll" 294 29955 30016 "lib/lexer.mll" 294 29955 30031
call(
  stack
)
type(
  Buffer.t
)
"lib/lexer.mll" 294 29955 29978 "lib/lexer.mll" 294 29955 30032
type(
  t
)
"lib/lexer.mll" 295 30033 30045 "lib/lexer.mll" 295 30033 30054
type(
  Buffer.t -> t
)
ident(
  def of_buffer "lib/lexer.mll" 296 30106 30114 "lib/lexer.mll" 300 30403 30412
)
"lib/lexer.mll" 295 30033 30055 "lib/lexer.mll" 295 30033 30063
type(
  Buffer.t
)
ident(
  def contents "lib/lexer.mll" 295 30033 30066 "lib/lexer.mll" 295 30033 30105
)
"lib/lexer.mll" 295 30033 30068 "lib/lexer.mll" 295 30033 30076
type(
  Buffer.t
)
ident(
  int_ref contents "lib/lexer.mll" 295 30033 30055 "lib/lexer.mll" 295 30033 30063
)
"lib/lexer.mll" 295 30033 30087 "lib/lexer.mll" 295 30033 30100
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"lib/lexer.mll" 295 30033 30101 "lib/lexer.mll" 295 30033 30103
type(
  int
)
"lib/lexer.mll" 295 30033 30087 "lib/lexer.mll" 295 30033 30103
call(
  stack
)
type(
  Buffer.t
)
"lib/lexer.mll" 295 30033 30066 "lib/lexer.mll" 295 30033 30105
type(
  t
)
"lib/lexer.mll" 296 30106 30118 "lib/lexer.mll" 296 30106 30126
type(
  t -> char -> unit
)
ident(
  def add_char "lib/lexer.mll" 297 30164 30172 "lib/lexer.mll" 300 30403 30412
)
"lib/lexer.mll" 296 30106 30127 "lib/lexer.mll" 296 30106 30128
type(
  t
)
ident(
  def t "lib/lexer.mll" 296 30106 30129 "lib/lexer.mll" 296 30106 30163
)
"lib/lexer.mll" 296 30106 30129 "lib/lexer.mll" 296 30106 30131
type(
  char
)
ident(
  def ch "lib/lexer.mll" 296 30106 30134 "lib/lexer.mll" 296 30106 30163
)
"lib/lexer.mll" 296 30106 30134 "lib/lexer.mll" 296 30106 30149
type(
  Buffer.t -> char -> unit
)
ident(
  ext_ref Buffer.add_char
)
"lib/lexer.mll" 296 30106 30150 "lib/lexer.mll" 296 30106 30151
type(
  t
)
ident(
  int_ref t "lib/lexer.mll" 296 30106 30127 "lib/lexer.mll" 296 30106 30128
)
"lib/lexer.mll" 296 30106 30150 "lib/lexer.mll" 296 30106 30160
type(
  Buffer.t
)
"lib/lexer.mll" 296 30106 30161 "lib/lexer.mll" 296 30106 30163
type(
  char
)
ident(
  int_ref ch "lib/lexer.mll" 296 30106 30129 "lib/lexer.mll" 296 30106 30131
)
"lib/lexer.mll" 296 30106 30134 "lib/lexer.mll" 296 30106 30163
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 297 30164 30176 "lib/lexer.mll" 297 30164 30189
type(
  t -> string -> int -> int -> unit
)
ident(
  def add_substring "lib/lexer.mll" 298 30250 30258 "lib/lexer.mll" 300 30403 30412
)
"lib/lexer.mll" 297 30164 30190 "lib/lexer.mll" 297 30164 30191
type(
  t
)
ident(
  def t "lib/lexer.mll" 297 30164 30192 "lib/lexer.mll" 297 30164 30249
)
"lib/lexer.mll" 297 30164 30192 "lib/lexer.mll" 297 30164 30195
type(
  string
)
ident(
  def str "lib/lexer.mll" 297 30164 30196 "lib/lexer.mll" 297 30164 30249
)
"lib/lexer.mll" 297 30164 30196 "lib/lexer.mll" 297 30164 30199
type(
  int
)
ident(
  def ofs "lib/lexer.mll" 297 30164 30200 "lib/lexer.mll" 297 30164 30249
)
"lib/lexer.mll" 297 30164 30200 "lib/lexer.mll" 297 30164 30203
type(
  int
)
ident(
  def len "lib/lexer.mll" 297 30164 30206 "lib/lexer.mll" 297 30164 30249
)
"lib/lexer.mll" 297 30164 30206 "lib/lexer.mll" 297 30164 30226
type(
  Buffer.t -> string -> int -> int -> unit
)
ident(
  ext_ref Buffer.add_substring
)
"lib/lexer.mll" 297 30164 30227 "lib/lexer.mll" 297 30164 30228
type(
  t
)
ident(
  int_ref t "lib/lexer.mll" 297 30164 30190 "lib/lexer.mll" 297 30164 30191
)
"lib/lexer.mll" 297 30164 30227 "lib/lexer.mll" 297 30164 30237
type(
  Buffer.t
)
"lib/lexer.mll" 297 30164 30238 "lib/lexer.mll" 297 30164 30241
type(
  string
)
ident(
  int_ref str "lib/lexer.mll" 297 30164 30192 "lib/lexer.mll" 297 30164 30195
)
"lib/lexer.mll" 297 30164 30242 "lib/lexer.mll" 297 30164 30245
type(
  int
)
ident(
  int_ref ofs "lib/lexer.mll" 297 30164 30196 "lib/lexer.mll" 297 30164 30199
)
"lib/lexer.mll" 297 30164 30246 "lib/lexer.mll" 297 30164 30249
type(
  int
)
ident(
  int_ref len "lib/lexer.mll" 297 30164 30200 "lib/lexer.mll" 297 30164 30203
)
"lib/lexer.mll" 297 30164 30206 "lib/lexer.mll" 297 30164 30249
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 298 30250 30262 "lib/lexer.mll" 298 30250 30272
type(
  t -> Lexing.lexbuf -> unit
)
ident(
  def add_lexeme "lib/lexer.mll" 299 30334 30342 "lib/lexer.mll" 300 30403 30412
)
"lib/lexer.mll" 298 30250 30273 "lib/lexer.mll" 298 30250 30274
type(
  t
)
ident(
  def t "lib/lexer.mll" 298 30250 30275 "lib/lexer.mll" 298 30250 30333
)
"lib/lexer.mll" 298 30250 30275 "lib/lexer.mll" 298 30250 30281
type(
  Lexing.lexbuf
)
ident(
  def lexbuf "lib/lexer.mll" 298 30250 30284 "lib/lexer.mll" 298 30250 30333
)
"lib/lexer.mll" 298 30250 30284 "lib/lexer.mll" 298 30250 30301
type(
  Buffer.t -> string -> unit
)
ident(
  ext_ref Buffer.add_string
)
"lib/lexer.mll" 298 30250 30302 "lib/lexer.mll" 298 30250 30303
type(
  t
)
ident(
  int_ref t "lib/lexer.mll" 298 30250 30273 "lib/lexer.mll" 298 30250 30274
)
"lib/lexer.mll" 298 30250 30302 "lib/lexer.mll" 298 30250 30310
type(
  Buffer.t
)
"lib/lexer.mll" 298 30250 30312 "lib/lexer.mll" 298 30250 30325
type(
  Lexing.lexbuf -> string
)
ident(
  ext_ref Lexing.lexeme
)
"lib/lexer.mll" 298 30250 30326 "lib/lexer.mll" 298 30250 30332
type(
  Lexing.lexbuf
)
ident(
  int_ref lexbuf "lib/lexer.mll" 298 30250 30275 "lib/lexer.mll" 298 30250 30281
)
"lib/lexer.mll" 298 30250 30311 "lib/lexer.mll" 298 30250 30333
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 298 30250 30284 "lib/lexer.mll" 298 30250 30333
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 299 30334 30346 "lib/lexer.mll" 299 30334 30351
type(
  t -> unit
)
ident(
  def clear "lib/lexer.mll" 299 30334 30402 "lib/lexer.mll" 300 30403 30412
)
"lib/lexer.mll" 299 30334 30352 "lib/lexer.mll" 299 30334 30353
type(
  t
)
ident(
  def t "lib/lexer.mll" 299 30334 30356 "lib/lexer.mll" 299 30334 30402
)
"lib/lexer.mll" 299 30334 30356 "lib/lexer.mll" 299 30334 30368
type(
  Buffer.t -> unit
)
ident(
  ext_ref Buffer.clear
)
"lib/lexer.mll" 299 30334 30369 "lib/lexer.mll" 299 30334 30370
type(
  t
)
ident(
  int_ref t "lib/lexer.mll" 299 30334 30352 "lib/lexer.mll" 299 30334 30353
)
"lib/lexer.mll" 299 30334 30369 "lib/lexer.mll" 299 30334 30377
type(
  Buffer.t
)
"lib/lexer.mll" 299 30334 30356 "lib/lexer.mll" 299 30334 30377
call(
  stack
)
type(
  unit
)
"lib/lexer.mll" 299 30334 30379 "lib/lexer.mll" 299 30334 30391
type(
  Buffer.t -> unit
)
ident(
  ext_ref Buffer.clear
)
"lib/lexer.mll" 299 30334 30392 "lib/lexer.mll" 299 30334 30393
type(
  t
)
ident(
  int_ref t "lib/lexer.mll" 299 30334 30352 "lib/lexer.mll" 299 30334 30353
)
"lib/lexer.mll" 299 30334 30392 "lib/lexer.mll" 299 30334 30402
type(
  Buffer.t
)
"lib/lexer.mll" 299 30334 30379 "lib/lexer.mll" 299 30334 30402
call(
  tail
)
type(
  unit
)
"lib/lexer.mll" 299 30334 30356 "lib/lexer.mll" 299 30334 30402
type(
  unit
)
"lib/lexer.mll" 305 30558 30570 "lib/lexer.mll" 305 30558 30573
type(
  Parser_with_layout.token
)
ident(
  def eof "lib/lexer.mll" 306 30580 30588 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 305 30558 30576 "lib/lexer.mll" 305 30558 30579
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 306 30580 30592 "lib/lexer.mll" 306 30580 30598
type(
  Parser_with_layout.token
)
ident(
  def lparen "lib/lexer.mll" 307 30608 30616 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 306 30580 30601 "lib/lexer.mll" 306 30580 30607
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 307 30608 30620 "lib/lexer.mll" 307 30608 30626
type(
  Parser_with_layout.token
)
ident(
  def rparen "lib/lexer.mll" 308 30636 30644 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 307 30608 30629 "lib/lexer.mll" 307 30608 30635
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 308 30636 30648 "lib/lexer.mll" 308 30636 30657
type(
  Parser_with_layout.token
)
ident(
  def hash_semi "lib/lexer.mll" 309 30670 30678 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 308 30636 30660 "lib/lexer.mll" 308 30636 30669
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 309 30670 30682 "lib/lexer.mll" 309 30670 30695
type(
  string -> Parser_with_layout.token
)
ident(
  def simple_string "lib/lexer.mll" 310 30717 30725 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 309 30670 30696 "lib/lexer.mll" 309 30670 30697
type(
  string
)
ident(
  def x "lib/lexer.mll" 309 30670 30700 "lib/lexer.mll" 309 30670 30716
)
"lib/lexer.mll" 309 30670 30708 "lib/lexer.mll" 309 30670 30709
type(
  string
)
ident(
  int_ref x "lib/lexer.mll" 309 30670 30696 "lib/lexer.mll" 309 30670 30697
)
"lib/lexer.mll" 309 30670 30711 "lib/lexer.mll" 309 30670 30715
type(
  (Lexing.position * string) option
)
"lib/lexer.mll" 309 30670 30707 "lib/lexer.mll" 309 30670 30716
type(
  string * (Lexing.position * string) option
)
"lib/lexer.mll" 309 30670 30700 "lib/lexer.mll" 309 30670 30716
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 310 30717 30729 "lib/lexer.mll" 310 30717 30742
type(
  Lexing.position -> Quoted_string_buffer.t -> Parser_with_layout.token
)
ident(
  def quoted_string "lib/lexer.mll" 312 30869 30877 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 310 30717 30743 "lib/lexer.mll" 310 30717 30746
type(
  Lexing.position
)
ident(
  def pos "lib/lexer.mll" 310 30717 30747 "lib/lexer.mll" 311 30789 30868
)
"lib/lexer.mll" 310 30717 30748 "lib/lexer.mll" 310 30717 30777
type(
  Buffer.t
)
ident(
  def contents "lib/lexer.mll" 311 30789 30799 "lib/lexer.mll" 311 30789 30868
)
"lib/lexer.mll" 310 30717 30779 "lib/lexer.mll" 310 30717 30785
type(
  Buffer.t
)
ident(
  def lexeme "lib/lexer.mll" 311 30789 30799 "lib/lexer.mll" 311 30789 30868
)
"lib/lexer.mll" 310 30717 30747 "lib/lexer.mll" 310 30717 30786
type(
  Quoted_string_buffer.t
)
"lib/lexer.mll" 311 30789 30807 "lib/lexer.mll" 311 30789 30822
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"lib/lexer.mll" 311 30789 30823 "lib/lexer.mll" 311 30789 30831
type(
  Buffer.t
)
ident(
  int_ref contents "lib/lexer.mll" 310 30717 30748 "lib/lexer.mll" 310 30717 30777
)
"lib/lexer.mll" 311 30789 30807 "lib/lexer.mll" 311 30789 30831
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 311 30789 30839 "lib/lexer.mll" 311 30789 30842
type(
  Lexing.position
)
ident(
  int_ref pos "lib/lexer.mll" 310 30717 30743 "lib/lexer.mll" 310 30717 30746
)
"lib/lexer.mll" 311 30789 30844 "lib/lexer.mll" 311 30789 30859
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"lib/lexer.mll" 311 30789 30860 "lib/lexer.mll" 311 30789 30866
type(
  Buffer.t
)
ident(
  int_ref lexeme "lib/lexer.mll" 310 30717 30779 "lib/lexer.mll" 310 30717 30785
)
"lib/lexer.mll" 311 30789 30844 "lib/lexer.mll" 311 30789 30866
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 311 30789 30838 "lib/lexer.mll" 311 30789 30867
type(
  Lexing.position * string
)
"lib/lexer.mll" 311 30789 30833 "lib/lexer.mll" 311 30789 30867
type(
  (Lexing.position * string) option
)
"lib/lexer.mll" 311 30789 30806 "lib/lexer.mll" 311 30789 30868
type(
  string * (Lexing.position * string) option
)
"lib/lexer.mll" 311 30789 30799 "lib/lexer.mll" 311 30789 30868
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 312 30869 30881 "lib/lexer.mll" 312 30869 30894
type(
  Lexing.position ->
  main:'a -> Quoted_string_buffer.t -> 'b -> Parser_with_layout.token
)
ident(
  def block_comment "lib/lexer.mll" 314 31014 31022 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 312 30869 30895 "lib/lexer.mll" 312 30869 30898
type(
  Lexing.position
)
ident(
  def pos "lib/lexer.mll" 312 30869 30899 "lib/lexer.mll" 313 30961 31013
)
"lib/lexer.mll" 312 30869 30905 "lib/lexer.mll" 312 30869 30906
type(
  'a
)
"lib/lexer.mll" 312 30869 30940 "lib/lexer.mll" 312 30869 30941
type(
  Buffer.t
)
"lib/lexer.mll" 312 30869 30943 "lib/lexer.mll" 312 30869 30949
type(
  Buffer.t
)
ident(
  def lexeme "lib/lexer.mll" 312 30869 30951 "lib/lexer.mll" 313 30961 31013
)
"lib/lexer.mll" 312 30869 30907 "lib/lexer.mll" 312 30869 30950
type(
  Quoted_string_buffer.t
)
"lib/lexer.mll" 312 30869 30951 "lib/lexer.mll" 312 30869 30958
type(
  'b
)
ident(
  def _lexbuf "lib/lexer.mll" 313 30961 30971 "lib/lexer.mll" 313 30961 31013
)
"lib/lexer.mll" 313 30961 30980 "lib/lexer.mll" 313 30961 30995
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"lib/lexer.mll" 313 30961 30996 "lib/lexer.mll" 313 30961 31002
type(
  Buffer.t
)
ident(
  int_ref lexeme "lib/lexer.mll" 312 30869 30943 "lib/lexer.mll" 312 30869 30949
)
"lib/lexer.mll" 313 30961 30980 "lib/lexer.mll" 313 30961 31002
call(
  stack
)
type(
  string
)
"lib/lexer.mll" 313 30961 31009 "lib/lexer.mll" 313 30961 31012
type(
  Lexing.position
)
ident(
  int_ref pos "lib/lexer.mll" 312 30869 30895 "lib/lexer.mll" 312 30869 30898
)
"lib/lexer.mll" 313 30961 31004 "lib/lexer.mll" 313 30961 31012
type(
  Lexing.position option
)
"lib/lexer.mll" 313 30961 30979 "lib/lexer.mll" 313 30961 31013
type(
  string * Lexing.position option
)
"lib/lexer.mll" 313 30961 30971 "lib/lexer.mll" 313 30961 31013
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 314 31014 31026 "lib/lexer.mll" 314 31014 31033
type(
  string -> main:'c -> 'd -> 'e -> Parser_with_layout.token
)
ident(
  def comment "lib/lexer.mll" 315 31062 31092 "lib/lexer.mll" 316 31093 31102
)
"lib/lexer.mll" 314 31014 31034 "lib/lexer.mll" 314 31014 31038
type(
  string
)
ident(
  def text "lib/lexer.mll" 314 31014 31039 "lib/lexer.mll" 315 31062 31092
)
"lib/lexer.mll" 314 31014 31045 "lib/lexer.mll" 314 31014 31046
type(
  'c
)
"lib/lexer.mll" 314 31014 31047 "lib/lexer.mll" 314 31014 31051
type(
  'd
)
ident(
  def _buf "lib/lexer.mll" 314 31014 31052 "lib/lexer.mll" 315 31062 31092
)
"lib/lexer.mll" 314 31014 31052 "lib/lexer.mll" 314 31014 31059
type(
  'e
)
ident(
  def _lexbuf "lib/lexer.mll" 315 31062 31072 "lib/lexer.mll" 315 31062 31092
)
"lib/lexer.mll" 315 31062 31081 "lib/lexer.mll" 315 31062 31085
type(
  string
)
ident(
  int_ref text "lib/lexer.mll" 314 31014 31034 "lib/lexer.mll" 314 31014 31038
)
"lib/lexer.mll" 315 31062 31087 "lib/lexer.mll" 315 31062 31091
type(
  Lexing.position option
)
"lib/lexer.mll" 315 31062 31080 "lib/lexer.mll" 315 31062 31092
type(
  string * Lexing.position option
)
"lib/lexer.mll" 315 31062 31072 "lib/lexer.mll" 315 31062 31092
type(
  Parser_with_layout.token
)
"lib/lexer.mll" 288 29806 29810 "lib/lexer.mll" 317 31103 31111
call(
  stack
)
"lib/lexer.mll" 319 31113 31119 "lib/lexer.mll" 319 31113 31123
type(
  ?buf:Buffer.t -> Lexing.lexbuf -> Parser.token
)
ident(
  def main "lib/lexer.mll" 320 31139 31141 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 319 31113 31126 "lib/lexer.mll" 319 31113 31138
type(
  ?buf:Buffer.t -> Lexing.lexbuf -> Parser.token
)
ident(
  int_ref Vanilla.main "lib/lexer.mll" 77 2032 2036 "lib/lexer.mll" 77 2032 2090
)
"lib/lexer.mll" 320 31139 31145 "lib/lexer.mll" 320 31139 31161
type(
  ?buf:Buffer.t -> Lexing.lexbuf -> Parser_with_layout.token
)
ident(
  def main_with_layout "lib/lexer.mll" 320 31139 31180 "lib/lexer.ml" 1 0 -1
)
"lib/lexer.mll" 320 31139 31164 "lib/lexer.mll" 320 31139 31180
type(
  ?buf:Buffer.t -> Lexing.lexbuf -> Parser_with_layout.token
)
ident(
  int_ref With_layout.main "lib/lexer.mll" 77 2032 2036 "lib/lexer.mll" 77 2032 2090
)