package mopsa
MOPSA: A Modular and Open Platform for Static Analysis using Abstract Interpretation
Install
dune-project
Dependency
Authors
Maintainers
Sources
mopsa-analyzer-v1.2.tar.gz
md5=37966e98ffeebcedc09bd6e9b2b81f69
sha512=40d4d826c25f680766c07eccbabdf5e8a4fa023016e8a164e4e4f6b3781c8484dc4df437055721dfd19b9db8fb7fe3b61236c4833186d346fc7204a68d01eaaa
doc/src/mopsa.mopsa_c_parser/Formatted_io_parser.ml.html
Source file Formatted_io_parser.ml
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
module MenhirBasics = struct exception Error let _eRR = fun _s -> raise Error type token = | ZERO | X | WS | U | TOK_string of ( # 60 "parsers/c/lib/parser/Formatted_io_parser.mly" (string) # 19 "parsers/c/lib/parser/Formatted_io_parser.ml" ) | STAR | SPACE | SHARP | S | PLUS | P | O | NUM of ( # 55 "parsers/c/lib/parser/Formatted_io_parser.mly" (int) # 31 "parsers/c/lib/parser/Formatted_io_parser.ml" ) | MINUS | LL | L | I | HH | H | G | F | EOF | E | DOT | D | CAP_L | C | A end include MenhirBasics # 24 "parsers/c/lib/parser/Formatted_io_parser.mly" open Formatted_io_placeholder let mk_output_placeholder width precision typ = let mk w p t = Placeholder { op_width = w; op_precision = p; op_typ = t; } in let width_arg_placeholder = match snd width with | true -> [mk None None (Int UNSIGNED_INT)] | _ -> [] in let precision_arg_placeholder = match snd precision with | true -> [mk None None (Int UNSIGNED_INT)] | _ -> [] in width_arg_placeholder @ precision_arg_placeholder @ [mk (fst width) (fst precision) typ] let mk_input_placeholder width typ = { ip_width = width; ip_typ = typ; } # 83 "parsers/c/lib/parser/Formatted_io_parser.ml" type ('s, 'r) _menhir_state = | MenhirState000 : ('s, _menhir_box_parse_input_format) _menhir_state (** State 000. Stack shape : . Start symbol: parse_input_format. *) | MenhirState001 : (('s, _menhir_box_parse_input_format) _menhir_cell1_TOK_string, _menhir_box_parse_input_format) _menhir_state (** State 001. Stack shape : TOK_string. Start symbol: parse_input_format. *) | MenhirState002 : (('s, _menhir_box_parse_input_format) _menhir_cell1_STAR, _menhir_box_parse_input_format) _menhir_state (** State 002. Stack shape : STAR. Start symbol: parse_input_format. *) | MenhirState050 : ((('s, _menhir_box_parse_input_format) _menhir_cell1_STAR, _menhir_box_parse_input_format) _menhir_cell1_input_placeholder, _menhir_box_parse_input_format) _menhir_state (** State 050. Stack shape : STAR input_placeholder. Start symbol: parse_input_format. *) | MenhirState052 : (('s, _menhir_box_parse_input_format) _menhir_cell1_input_placeholder, _menhir_box_parse_input_format) _menhir_state (** State 052. Stack shape : input_placeholder. Start symbol: parse_input_format. *) | MenhirState058 : ('s, _menhir_box_parse_output_format) _menhir_state (** State 058. Stack shape : . Start symbol: parse_output_format. *) | MenhirState068 : (('s, _menhir_box_parse_output_format) _menhir_cell1_output_format, _menhir_box_parse_output_format) _menhir_state (** State 068. Stack shape : output_format. Start symbol: parse_output_format. *) | MenhirState121 : (('s, _menhir_box_parse_output_format) _menhir_cell1_output_flag, _menhir_box_parse_output_format) _menhir_state (** State 121. Stack shape : output_flag. Start symbol: parse_output_format. *) and ('s, 'r) _menhir_cell1_input_placeholder = | MenhirCell1_input_placeholder of 's * ('s, 'r) _menhir_state * (Formatted_io_placeholder.input_placeholder) and ('s, 'r) _menhir_cell1_input_width = | MenhirCell1_input_width of 's * ('s, 'r) _menhir_state * (int option) and ('s, 'r) _menhir_cell1_output_flag = | MenhirCell1_output_flag of 's * ('s, 'r) _menhir_state * (unit) and ('s, 'r) _menhir_cell1_output_flag_list = | MenhirCell1_output_flag_list of 's * ('s, 'r) _menhir_state * (unit) and ('s, 'r) _menhir_cell1_output_format = | MenhirCell1_output_format of 's * ('s, 'r) _menhir_state * (Formatted_io_placeholder.output_format list) and 's _menhir_cell0_output_precision = | MenhirCell0_output_precision of 's * (int option * bool) and 's _menhir_cell0_output_width = | MenhirCell0_output_width of 's * (int option * bool) and ('s, 'r) _menhir_cell1_STAR = | MenhirCell1_STAR of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_TOK_string = | MenhirCell1_TOK_string of 's * ('s, 'r) _menhir_state * ( # 60 "parsers/c/lib/parser/Formatted_io_parser.mly" (string) # 155 "parsers/c/lib/parser/Formatted_io_parser.ml" ) and _menhir_box_parse_output_format = | MenhirBox_parse_output_format of (Formatted_io_placeholder.output_format list) [@@unboxed] and _menhir_box_parse_input_format = | MenhirBox_parse_input_format of (Formatted_io_placeholder.input_placeholder list) [@@unboxed] let _menhir_action_002 = fun t w -> ( # 159 "parsers/c/lib/parser/Formatted_io_parser.mly" ( mk_input_placeholder w t ) # 169 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.input_placeholder)) let _menhir_action_003 = fun () -> ( # 153 "parsers/c/lib/parser/Formatted_io_parser.mly" ( [] ) # 177 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.input_placeholder list)) let _menhir_action_004 = fun tl -> ( # 154 "parsers/c/lib/parser/Formatted_io_parser.mly" ( tl ) # 185 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.input_placeholder list)) let _menhir_action_005 = fun tl -> ( # 155 "parsers/c/lib/parser/Formatted_io_parser.mly" ( tl ) # 193 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.input_placeholder list)) let _menhir_action_006 = fun hd tl -> ( # 156 "parsers/c/lib/parser/Formatted_io_parser.mly" ( hd :: tl ) # 201 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.input_placeholder list)) let _menhir_action_007 = fun () -> ( # 167 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 209 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_008 = fun () -> ( # 170 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_CHAR ) # 217 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_009 = fun () -> ( # 170 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_CHAR ) # 225 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_010 = fun () -> ( # 171 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_SHORT ) # 233 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_011 = fun () -> ( # 171 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_SHORT ) # 241 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_012 = fun () -> ( # 172 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_INT ) # 249 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_013 = fun () -> ( # 172 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_INT ) # 257 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_014 = fun () -> ( # 173 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG ) # 265 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_015 = fun () -> ( # 173 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG ) # 273 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_016 = fun () -> ( # 174 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG_LONG ) # 281 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_017 = fun () -> ( # 174 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG_LONG ) # 289 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_018 = fun () -> ( # 177 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 297 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_019 = fun () -> ( # 177 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 305 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_020 = fun () -> ( # 177 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 313 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_021 = fun () -> ( # 178 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_SHORT ) # 321 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_022 = fun () -> ( # 178 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_SHORT ) # 329 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_023 = fun () -> ( # 178 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_SHORT ) # 337 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_024 = fun () -> ( # 179 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_INT ) # 345 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_025 = fun () -> ( # 179 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_INT ) # 353 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_026 = fun () -> ( # 179 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_INT ) # 361 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_027 = fun () -> ( # 180 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG ) # 369 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_028 = fun () -> ( # 180 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG ) # 377 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_029 = fun () -> ( # 180 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG ) # 385 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_030 = fun () -> ( # 181 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG_LONG ) # 393 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_031 = fun () -> ( # 181 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG_LONG ) # 401 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_032 = fun () -> ( # 181 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG_LONG ) # 409 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_033 = fun () -> ( # 184 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 417 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_034 = fun () -> ( # 184 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 425 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_035 = fun () -> ( # 184 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 433 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_036 = fun () -> ( # 184 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 441 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_037 = fun () -> ( # 185 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float DOUBLE ) # 449 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_038 = fun () -> ( # 185 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float DOUBLE ) # 457 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_039 = fun () -> ( # 185 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float DOUBLE ) # 465 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_040 = fun () -> ( # 185 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float DOUBLE ) # 473 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_041 = fun () -> ( # 186 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 481 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_042 = fun () -> ( # 186 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 489 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_043 = fun () -> ( # 186 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 497 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_044 = fun () -> ( # 186 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 505 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_045 = fun () -> ( # 189 "parsers/c/lib/parser/Formatted_io_parser.mly" ( String ) # 513 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_046 = fun () -> ( # 190 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Pointer ) # 521 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_047 = fun n -> ( # 162 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Some n ) # 529 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option)) let _menhir_action_048 = fun () -> ( # 163 "parsers/c/lib/parser/Formatted_io_parser.mly" ( None ) # 537 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option)) let _menhir_action_049 = fun () -> ( # 100 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 545 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_050 = fun () -> ( # 101 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 553 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_051 = fun () -> ( # 102 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 561 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_052 = fun () -> ( # 103 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 569 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_053 = fun () -> ( # 104 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 577 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_054 = fun () -> ( # 96 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 585 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_055 = fun () -> ( # 97 "parsers/c/lib/parser/Formatted_io_parser.mly" ( ) # 593 "parsers/c/lib/parser/Formatted_io_parser.ml" : (unit)) let _menhir_action_056 = fun v -> ( # 91 "parsers/c/lib/parser/Formatted_io_parser.mly" ( [String v] ) # 601 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.output_format list)) let _menhir_action_057 = fun p t w -> ( # 92 "parsers/c/lib/parser/Formatted_io_parser.mly" ( mk_output_placeholder w p t ) # 609 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.output_format list)) let _menhir_action_058 = fun () -> ( # 87 "parsers/c/lib/parser/Formatted_io_parser.mly" ( [] ) # 617 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.output_format list)) let _menhir_action_059 = fun hd tl -> ( # 88 "parsers/c/lib/parser/Formatted_io_parser.mly" ( hd @ tl ) # 625 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.output_format list)) let _menhir_action_060 = fun n -> ( # 112 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Some n, false ) # 633 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_061 = fun () -> ( # 113 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Some 0, false ) # 641 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_062 = fun () -> ( # 114 "parsers/c/lib/parser/Formatted_io_parser.mly" ( None, true ) # 649 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_063 = fun () -> ( # 115 "parsers/c/lib/parser/Formatted_io_parser.mly" ( None, false ) # 657 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_064 = fun () -> ( # 119 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 665 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_065 = fun () -> ( # 122 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_CHAR ) # 673 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_066 = fun () -> ( # 122 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_CHAR ) # 681 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_067 = fun () -> ( # 123 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_SHORT ) # 689 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_068 = fun () -> ( # 123 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_SHORT ) # 697 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_069 = fun () -> ( # 124 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_INT ) # 705 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_070 = fun () -> ( # 124 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_INT ) # 713 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_071 = fun () -> ( # 125 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG ) # 721 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_072 = fun () -> ( # 125 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG ) # 729 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_073 = fun () -> ( # 126 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG_LONG ) # 737 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_074 = fun () -> ( # 126 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int SIGNED_LONG_LONG ) # 745 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_075 = fun () -> ( # 129 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 753 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_076 = fun () -> ( # 129 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 761 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_077 = fun () -> ( # 129 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_CHAR ) # 769 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_078 = fun () -> ( # 130 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_SHORT ) # 777 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_079 = fun () -> ( # 130 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_SHORT ) # 785 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_080 = fun () -> ( # 130 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_SHORT ) # 793 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_081 = fun () -> ( # 131 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_INT ) # 801 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_082 = fun () -> ( # 131 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_INT ) # 809 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_083 = fun () -> ( # 131 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_INT ) # 817 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_084 = fun () -> ( # 132 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG ) # 825 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_085 = fun () -> ( # 132 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG ) # 833 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_086 = fun () -> ( # 132 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG ) # 841 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_087 = fun () -> ( # 133 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG_LONG ) # 849 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_088 = fun () -> ( # 133 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG_LONG ) # 857 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_089 = fun () -> ( # 133 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Int UNSIGNED_LONG_LONG ) # 865 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_090 = fun () -> ( # 136 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 873 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_091 = fun () -> ( # 136 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 881 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_092 = fun () -> ( # 136 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 889 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_093 = fun () -> ( # 136 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float FLOAT ) # 897 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_094 = fun () -> ( # 137 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 905 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_095 = fun () -> ( # 137 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 913 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_096 = fun () -> ( # 137 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 921 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_097 = fun () -> ( # 137 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Float LONG_DOUBLE ) # 929 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_098 = fun () -> ( # 140 "parsers/c/lib/parser/Formatted_io_parser.mly" ( String ) # 937 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_099 = fun () -> ( # 141 "parsers/c/lib/parser/Formatted_io_parser.mly" ( WideString ) # 945 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_100 = fun () -> ( # 142 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Pointer ) # 953 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.placeholder_type)) let _menhir_action_101 = fun n -> ( # 107 "parsers/c/lib/parser/Formatted_io_parser.mly" ( Some n, false ) # 961 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_102 = fun () -> ( # 108 "parsers/c/lib/parser/Formatted_io_parser.mly" ( None, true ) # 969 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_103 = fun () -> ( # 109 "parsers/c/lib/parser/Formatted_io_parser.mly" ( None, false ) # 977 "parsers/c/lib/parser/Formatted_io_parser.ml" : (int option * bool)) let _menhir_action_104 = fun l -> ( # 150 "parsers/c/lib/parser/Formatted_io_parser.mly" ( l ) # 985 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.input_placeholder list)) let _menhir_action_105 = fun l -> ( # 84 "parsers/c/lib/parser/Formatted_io_parser.mly" ( l ) # 993 "parsers/c/lib/parser/Formatted_io_parser.ml" : (Formatted_io_placeholder.output_format list)) let _menhir_print_token : token -> string = fun _tok -> match _tok with | A -> "A" | C -> "C" | CAP_L -> "CAP_L" | D -> "D" | DOT -> "DOT" | E -> "E" | EOF -> "EOF" | F -> "F" | G -> "G" | H -> "H" | HH -> "HH" | I -> "I" | L -> "L" | LL -> "LL" | MINUS -> "MINUS" | NUM _ -> "NUM" | O -> "O" | P -> "P" | PLUS -> "PLUS" | S -> "S" | SHARP -> "SHARP" | SPACE -> "SPACE" | STAR -> "STAR" | TOK_string _ -> "TOK_string" | U -> "U" | WS -> "WS" | X -> "X" | ZERO -> "ZERO" let _menhir_fail : unit -> 'a = fun () -> Printf.eprintf "Internal failure -- please contact the parser generator's developers.\n%!"; assert false include struct [@@@ocaml.warning "-4-37"] let _menhir_run_056 : type ttv_stack. ttv_stack -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _v -> let l = _v in let _v = _menhir_action_104 l in MenhirBox_parse_input_format _v let rec _menhir_run_053 : type ttv_stack. (ttv_stack, _menhir_box_parse_input_format) _menhir_cell1_input_placeholder -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _v -> let MenhirCell1_input_placeholder (_menhir_stack, _menhir_s, hd) = _menhir_stack in let tl = _v in let _v = _menhir_action_006 hd tl in _menhir_goto_input_placeholder_list _menhir_stack _v _menhir_s and _menhir_goto_input_placeholder_list : type ttv_stack. ttv_stack -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _menhir_box_parse_input_format = fun _menhir_stack _v _menhir_s -> match _menhir_s with | MenhirState000 -> _menhir_run_056 _menhir_stack _v | MenhirState001 -> _menhir_run_054 _menhir_stack _v | MenhirState052 -> _menhir_run_053 _menhir_stack _v | MenhirState050 -> _menhir_run_051 _menhir_stack _v | _ -> _menhir_fail () and _menhir_run_054 : type ttv_stack. (ttv_stack, _menhir_box_parse_input_format) _menhir_cell1_TOK_string -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _v -> let MenhirCell1_TOK_string (_menhir_stack, _menhir_s, _) = _menhir_stack in let tl = _v in let _v = _menhir_action_004 tl in _menhir_goto_input_placeholder_list _menhir_stack _v _menhir_s and _menhir_run_051 : type ttv_stack. ((ttv_stack, _menhir_box_parse_input_format) _menhir_cell1_STAR, _menhir_box_parse_input_format) _menhir_cell1_input_placeholder -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _v -> let MenhirCell1_input_placeholder (_menhir_stack, _, _) = _menhir_stack in let MenhirCell1_STAR (_menhir_stack, _menhir_s) = _menhir_stack in let tl = _v in let _v = _menhir_action_005 tl in _menhir_goto_input_placeholder_list _menhir_stack _v _menhir_s let rec _menhir_run_001 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _menhir_stack = MenhirCell1_TOK_string (_menhir_stack, _menhir_s, _v) in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | TOK_string _v_0 -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState001 | STAR -> _menhir_run_002 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState001 | NUM _v_1 -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState001 | EOF -> let _v_2 = _menhir_action_003 () in _menhir_run_054 _menhir_stack _v_2 | A | C | CAP_L | D | E | F | G | H | HH | I | L | O | P | S | U | X -> let _menhir_s = MenhirState001 in let _v = _menhir_action_048 () in _menhir_goto_input_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_002 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_STAR (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState002 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | A | C | CAP_L | D | E | F | G | H | HH | I | L | O | P | S | U | X -> let _v = _menhir_action_048 () in _menhir_goto_input_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_003 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let n = _v in let _v = _menhir_action_047 n in _menhir_goto_input_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_input_width : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_input_width (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_025 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_024 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | S -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_045 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | P -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_046 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_026 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | L -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_028 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_027 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_029 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_015 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | G -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_039 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | F -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_038 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | E -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_037 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_014 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_040 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_013 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | HH -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_019 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_018 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_020 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_009 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_008 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | H -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_022 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_021 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_023 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_011 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_010 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | G -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_035 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | F -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_034 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | E -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_033 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_012 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | CAP_L -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_031 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_030 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_032 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_017 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | G -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_043 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | F -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_042 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | E -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_041 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_016 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_044 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | C -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_007 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_036 () in _menhir_goto_input_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR () and _menhir_goto_input_typ : type ttv_stack. (ttv_stack, _menhir_box_parse_input_format) _menhir_cell1_input_width -> _ -> _ -> _ -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_input_width (_menhir_stack, _menhir_s, w) = _menhir_stack in let t = _v in let _v = _menhir_action_002 t w in _menhir_goto_input_placeholder _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_input_placeholder : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState000 -> _menhir_run_052 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState001 -> _menhir_run_052 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState052 -> _menhir_run_052 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState050 -> _menhir_run_052 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState002 -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_052 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_input_format) _menhir_state -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_input_placeholder (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | TOK_string _v_0 -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState052 | STAR -> _menhir_run_002 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState052 | NUM _v_1 -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState052 | EOF -> let _v_2 = _menhir_action_003 () in _menhir_run_053 _menhir_stack _v_2 | A | C | CAP_L | D | E | F | G | H | HH | I | L | O | P | S | U | X -> let _menhir_s = MenhirState052 in let _v = _menhir_action_048 () in _menhir_goto_input_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_050 : type ttv_stack. ((ttv_stack, _menhir_box_parse_input_format) _menhir_cell1_STAR as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_parse_input_format) _menhir_state -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_input_placeholder (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | TOK_string _v_0 -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState050 | STAR -> _menhir_run_002 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState050 | NUM _v_1 -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState050 | EOF -> let _v_2 = _menhir_action_003 () in _menhir_run_051 _menhir_stack _v_2 | A | C | CAP_L | D | E | F | G | H | HH | I | L | O | P | S | U | X -> let _menhir_s = MenhirState050 in let _v = _menhir_action_048 () in _menhir_goto_input_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () let _menhir_run_000 : type ttv_stack. ttv_stack -> _ -> _ -> _menhir_box_parse_input_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | TOK_string _v -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _v MenhirState000 | STAR -> _menhir_run_002 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState000 | NUM _v -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _v MenhirState000 | EOF -> let _v = _menhir_action_003 () in _menhir_run_056 _menhir_stack _v | A | C | CAP_L | D | E | F | G | H | HH | I | L | O | P | S | U | X -> let _menhir_s = MenhirState000 in let _v = _menhir_action_048 () in _menhir_goto_input_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () let _menhir_run_066 : type ttv_stack. ttv_stack -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _v -> let l = _v in let _v = _menhir_action_105 l in MenhirBox_parse_output_format _v let rec _menhir_run_069 : type ttv_stack. (ttv_stack, _menhir_box_parse_output_format) _menhir_cell1_output_format -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _v -> let MenhirCell1_output_format (_menhir_stack, _menhir_s, hd) = _menhir_stack in let tl = _v in let _v = _menhir_action_059 hd tl in _menhir_goto_output_format_list _menhir_stack _v _menhir_s and _menhir_goto_output_format_list : type ttv_stack. ttv_stack -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _v _menhir_s -> match _menhir_s with | MenhirState068 -> _menhir_run_069 _menhir_stack _v | MenhirState058 -> _menhir_run_066 _menhir_stack _v | _ -> _menhir_fail () let rec _menhir_run_059 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_051 () in _menhir_goto_output_flag _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_output_flag : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_output_flag (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | ZERO -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState121 | SPACE -> _menhir_run_061 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState121 | SHARP -> _menhir_run_062 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState121 | PLUS -> _menhir_run_063 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState121 | MINUS -> _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState121 | A | C | CAP_L | D | DOT | E | F | G | H | HH | I | L | LL | NUM _ | O | P | S | STAR | U | WS | X -> let _ = _menhir_action_054 () in _menhir_run_122 _menhir_stack _menhir_lexbuf _menhir_lexer _tok | _ -> _eRR () and _menhir_run_061 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_053 () in _menhir_goto_output_flag _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_062 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_052 () in _menhir_goto_output_flag _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_063 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_049 () in _menhir_goto_output_flag _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_064 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_050 () in _menhir_goto_output_flag _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_122 : type ttv_stack. (ttv_stack, _menhir_box_parse_output_format) _menhir_cell1_output_flag -> _ -> _ -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _tok -> let MenhirCell1_output_flag (_menhir_stack, _menhir_s, _) = _menhir_stack in let _v = _menhir_action_055 () in _menhir_goto_output_flag_list _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_output_flag_list : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState121 -> _menhir_run_122 _menhir_stack _menhir_lexbuf _menhir_lexer _tok | MenhirState058 -> _menhir_run_070 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState068 -> _menhir_run_070 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_070 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_output_flag_list (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | STAR -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_102 () in _menhir_goto_output_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | NUM _v_1 -> let _tok = _menhir_lexer _menhir_lexbuf in let n = _v_1 in let _v = _menhir_action_101 n in _menhir_goto_output_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A | C | CAP_L | D | DOT | E | F | G | H | HH | I | L | LL | O | P | S | U | WS | X -> let _v = _menhir_action_103 () in _menhir_goto_output_width _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_goto_output_width : type ttv_stack. (ttv_stack, _menhir_box_parse_output_format) _menhir_cell1_output_flag_list -> _ -> _ -> _ -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let _menhir_stack = MenhirCell0_output_width (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | DOT -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | STAR -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_062 () in _menhir_goto_output_precision _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | NUM _v_1 -> let _tok = _menhir_lexer _menhir_lexbuf in let n = _v_1 in let _v = _menhir_action_060 n in _menhir_goto_output_precision _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A | C | CAP_L | D | E | F | G | H | HH | I | L | LL | O | P | S | U | WS | X -> let _v = _menhir_action_061 () in _menhir_goto_output_precision _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | A | C | CAP_L | D | E | F | G | H | HH | I | L | LL | O | P | S | U | WS | X -> let _v = _menhir_action_063 () in _menhir_goto_output_precision _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR () and _menhir_goto_output_precision : type ttv_stack. (ttv_stack, _menhir_box_parse_output_format) _menhir_cell1_output_flag_list _menhir_cell0_output_width -> _ -> _ -> _ -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let _menhir_stack = MenhirCell0_output_precision (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_082 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | WS -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_099 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_081 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | S -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_098 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | P -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_100 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_083 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | LL -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_088 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_087 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_089 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_074 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_073 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | L -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_085 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_084 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_086 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_072 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_071 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_070 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | HH -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_076 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_075 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_077 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_066 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_065 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | H -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | X -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_079 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | U -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_078 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | O -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_080 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | I -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_068 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_067 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | G -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_092 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | F -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_091 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | E -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_090 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | D -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_069 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | CAP_L -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | G -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_096 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | F -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_095 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | E -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_094 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_097 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | C -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_064 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | A -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_093 () in _menhir_goto_output_typ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR () and _menhir_goto_output_typ : type ttv_stack. (ttv_stack, _menhir_box_parse_output_format) _menhir_cell1_output_flag_list _menhir_cell0_output_width _menhir_cell0_output_precision -> _ -> _ -> _ -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell0_output_precision (_menhir_stack, p) = _menhir_stack in let MenhirCell0_output_width (_menhir_stack, w) = _menhir_stack in let MenhirCell1_output_flag_list (_menhir_stack, _menhir_s, _) = _menhir_stack in let t = _v in let _v = _menhir_action_057 p t w in _menhir_goto_output_format _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_output_format : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_output_format (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | ZERO -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState068 | TOK_string _v_0 -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState068 | SPACE -> _menhir_run_061 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState068 | SHARP -> _menhir_run_062 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState068 | PLUS -> _menhir_run_063 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState068 | MINUS -> _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState068 | A | C | CAP_L | D | DOT | E | F | G | H | HH | I | L | LL | NUM _ | O | P | S | STAR | U | WS | X -> let _v_1 = _menhir_action_054 () in _menhir_run_070 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState068 _tok | EOF -> let _v_2 = _menhir_action_058 () in _menhir_run_069 _menhir_stack _v_2 and _menhir_run_060 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_output_format) _menhir_state -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let v = _v in let _v = _menhir_action_056 v in _menhir_goto_output_format _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok let _menhir_run_058 : type ttv_stack. ttv_stack -> _ -> _ -> _menhir_box_parse_output_format = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ZERO -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState058 | TOK_string _v -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _v MenhirState058 | SPACE -> _menhir_run_061 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState058 | SHARP -> _menhir_run_062 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState058 | PLUS -> _menhir_run_063 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState058 | MINUS -> _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState058 | A | C | CAP_L | D | DOT | E | F | G | H | HH | I | L | LL | NUM _ | O | P | S | STAR | U | WS | X -> let _v = _menhir_action_054 () in _menhir_run_070 _menhir_stack _menhir_lexbuf _menhir_lexer _v MenhirState058 _tok | EOF -> let _v = _menhir_action_058 () in _menhir_run_066 _menhir_stack _v end let parse_output_format = fun _menhir_lexer _menhir_lexbuf -> let _menhir_stack = () in let MenhirBox_parse_output_format v = _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer in v let parse_input_format = fun _menhir_lexer _menhir_lexbuf -> let _menhir_stack = () in let MenhirBox_parse_input_format v = _menhir_run_000 _menhir_stack _menhir_lexbuf _menhir_lexer in v
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>