package wax-lib
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Libraries for Wax, a Rust-like syntax for WebAssembly
Install
dune-project
Dependency
Authors
Maintainers
Sources
wax-0.1.0.tbz
sha256=41b580846af8d41bdf6c3f005f62e38feda3e60fe2e9e4aa440db34ce515a153
sha512=4b3a181fcc7d743194a8647260870fb5190770066a197bcc48104c2b77fd40c643228b795c2bcd6b29a120820e969eb42a37a9bcec98b3f608d13f152d9f6579
doc/src/wax-lib.wax/parser_messages.ml.html
Source file parser_messages.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(* This file was auto-generated based on "./parser_messages.messages". *) (* Please note that the function [message] can raise [Not_found]. *) let message = fun s -> match s with | 1002 -> "Assuming that the attribute expression is complete, expecting ']'.\n<4>This '[' opens the enclosing construct.\n" | 1001 -> "Expecting an attribute expression.\n" | 999 -> "Expecting '=', or ']'.\n<2>This '[' opens the enclosing construct.\n" | 998 -> "Expecting an identifier.\n" | 997 -> "Expecting '['.\n" | 995 -> "Expecting braced fields.\n" | 994 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 983 -> "Assuming that the constant expression is complete, expecting ';'.\n" | 982 -> "Expecting a constant expression.\n" | 981 -> "Expecting '='.\n" | 980 -> "Expecting a value type.\n" | 978 -> "Assuming that the constant expression is complete, expecting ';'.\n" | 977 -> "Expecting a constant expression.\n" | 976 -> "Expecting ':', or '='.\n" | 975 -> "Expecting an identifier.\n" | 970 -> "Assuming that the tag sig is complete, expecting ';'.\n" | 964 -> "Expecting a data init.\n" | 963 -> "Expecting ';', or '='.\n" | 962 -> "Assuming that the constant expression is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 961 -> "Expecting a constant expression.\n" | 960 -> "Expecting '['.\n" | 959 -> "Expecting an identifier.\n" | 957 -> "Expecting a data init.\n" | 956 -> "Expecting ';', '=', or '@'.\n" | 955 -> "Expecting a data name.\n" | 953 -> "Expecting ';'.\n" | 952 -> "Assuming that the expression list is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 951 -> "Expecting an expression list.\n" | 950 -> "Expecting '['.\n" | 949 -> "Expecting '='.\n" | 948 -> "Assuming that the constant expression is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 947 -> "Expecting a constant expression.\n" | 946 -> "Expecting '['.\n" | 945 -> "Expecting an identifier.\n" | 943 -> "Expecting ';'.\n" | 942 -> "Assuming that the expression list is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 941 -> "Expecting an expression list.\n" | 940 -> "Expecting '['.\n" | 939 -> "Expecting '=', or '@'.\n" | 938 -> "Expecting a reference type.\n" | 937 -> "Expecting ':'.\n" | 936 -> "Expecting an identifier.\n" | 934 -> "Assuming that the statement list is complete, expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 931 -> "Assuming that the statement list is complete, expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 929 -> "Expecting '{'.\n" | 928 -> "Expecting ':'.\n" | 927 -> "Expecting a label name.\n" | 926 -> "Assuming that the optional function type is complete, expecting ''', or '{'.\n" | 924 -> "Assuming that the statement list is complete, expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 921 -> "Assuming that the statement list is complete, expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 919 -> "Expecting '{'.\n" | 918 -> "Expecting ':'.\n" | 917 -> "Expecting a label name.\n" | 916 -> "Assuming that the optional function type is complete, expecting ''', or '{'.\n" | 915 -> "Expecting an optional function type.\n" | 914 -> "Expecting a type name.\n" | 913 -> "Expecting '!', or a type name.\n" | 912 -> "Expecting ':', or an optional function type.\n" | 911 -> "Expecting '!', ':', or an optional function type.\n" | 910 -> "Expecting a function name.\n" | 908 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 905 -> "Expecting ';', or '{'.\n" | 903 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 900 -> "Expecting ';', or '{'.\n" | 898 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 895 -> "Expecting ';', or '{'.\n" | 894 -> "Expecting ';', 'shared', or '{'.\n" | 893 -> "Expecting ';', 'shared', '{', or a page-size clause.\n" | 889 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 885 -> "Expecting a data elem.\n" | 884 -> "Expecting '++', or ';'.\n" | 876 -> "Expecting ']'.\n<4>This '[' opens the enclosing construct.\n" | 870 -> "Expecting a raw number.\n" | 868 -> "Expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 863 -> "Expecting '('.\n" | 856 -> "Expecting ':'.\n" | 855 -> "Expecting an identifier.\n" | 853 -> "Expecting a data init.\n" | 852 -> "Expecting ';', or '='.\n" | 851 -> "Assuming that the constant expression is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 849 -> "Expecting a constant expression.\n" | 848 -> "Expecting '['.\n" | 847 -> "Expecting '@'.\n" | 844 -> "Expecting a data name.\n" | 841 -> "Expecting ';', or '{'.\n" | 840 -> "Expecting ';', 'shared', or '{'.\n" | 839 -> "Expecting ';', 'shared', '{', a page-size clause, or memory limits.\n" | 838 -> "Expecting an address type.\n" | 837 -> "Expecting ':'.\n" | 836 -> "Expecting an identifier.\n" | 834 -> "Syntax error\n" | 833 -> "Expecting an expression.\n" | 831 -> "Expecting ';', or '='.\n" | 829 -> "Syntax error\n" | 828 -> "Expecting an expression.\n" | 826 -> "Expecting ';', '=', or memory limits.\n" | 825 -> "Expecting a reference type.\n" | 823 -> "Syntax error\n" | 822 -> "Expecting an expression.\n" | 820 -> "Expecting ';', or '='.\n" | 818 -> "Syntax error\n" | 817 -> "Expecting an expression.\n" | 815 -> "Expecting ';', '=', or memory limits.\n" | 814 -> "Expecting a reference type, or an address type.\n" | 813 -> "Expecting ':'.\n" | 812 -> "Expecting an identifier.\n" | 811 -> "Expecting a definition.\n" | 809 -> "Expecting '}', or a module field.\n" | 799 -> "Expecting '}', or an import item.\n" | 797 -> "Expecting a value type.\n" | 796 -> "Expecting ':'.\n" | 795 -> "Expecting an identifier.\n" | 793 -> "Expecting ';'.\n" | 788 -> "Expecting an optional function type.\n" | 787 -> "Expecting a type name.\n" | 786 -> "Expecting '!', or a type name.\n" | 785 -> "Expecting ':', or an optional function type.\n" | 784 -> "Expecting '!', ':', or an optional function type.\n" | 782 -> "Expecting a function name.\n" | 777 -> "Expecting ';', or 'shared'.\n" | 776 -> "Expecting ';', 'shared', or a page-size clause.\n" | 774 -> "Expecting ';', or 'shared'.\n" | 772 -> "Expecting an integer.\n" | 770 -> "Expecting ';', 'shared', a page-size clause, or memory limits.\n" | 769 -> "Expecting an address type.\n" | 768 -> "Expecting ':'.\n" | 767 -> "Expecting an identifier.\n" | 765 -> "Expecting ';', or memory limits.\n" | 764 -> "Expecting a reference type.\n" | 761 -> "Expecting ']'.\n<4>This '[' opens the enclosing construct.\n" | 760 -> "Expecting an integer.\n" | 758 -> "Expecting ',', or ']'.\n<2>This '[' opens the enclosing construct.\n" | 757 -> "Expecting an integer.\n" | 756 -> "Expecting ';', or memory limits.\n" | 754 -> "Expecting a reference type, or an address type.\n" | 753 -> "Expecting ':'.\n" | 752 -> "Expecting an identifier.\n" | 747 -> "Expecting an optional function type.\n" | 746 -> "Expecting a type name.\n" | 745 -> "Expecting ':', or an optional function type.\n" | 744 -> "Expecting a tag name.\n" | 743 -> "Expecting an import declaration.\n" | 741 -> "Expecting '}', or an import item.\n" | 740 -> "Expecting '}', or an import item.\n<1>This '{' opens the enclosing construct.\n" | 738 -> "Expecting a string.\n" | 736 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 732 -> "Expecting '{'.\n" | 731 -> "Expecting '}', or a module field.\n" | 730 -> "Expecting '}', or a module field.\n<1>This '{' opens the enclosing construct.\n" | 729 -> "Expecting braced fields.\n" | 728 -> "Expecting ']'.\n<5>This '[' opens the enclosing construct.\n" | 727 -> "Assuming that the condition is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 726 -> "Expecting a condition.\n" | 725 -> "Expecting '('.\n" | 723 -> "Expecting ']'.\n<3>This '[' opens the enclosing construct.\n" | 721 -> "Expecting ']'.\n<5>This '[' opens the enclosing construct.\n" | 720 -> "Assuming that the attribute expression is complete, expecting an attribute guard.\n" | 717 -> "Expecting a block.\n" | 716 -> "Assuming that the statement is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 715 -> "Expecting a statement.\n" | 714 -> "Expecting '('.\n" | 713 -> "Assuming that the condition expression is complete, expecting ':', or a block.\n" | 711 -> "Expecting '}'.\n<3>This '{' opens the enclosing construct.\n" | 710 -> "Expecting '}', or a catch-all clause.\n<2>This '{' opens the enclosing construct.\n" | 708 -> "Expecting '{'.\n" | 707 -> "Expecting 'catch'.\n" | 704 -> "Assuming that the statement list is complete, expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 696 -> "Assuming that the statement is complete, expecting ';'.\n" | 693 -> "Expecting a block.\n" | 692 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 690 -> "Expecting a block.\n" | 689 -> "Expecting ']'.\n<5>This '[' opens the enclosing construct.\n" | 688 -> "Assuming that the condition is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 687 -> "Expecting a condition.\n" | 686 -> "Expecting '('.\n" | 685 -> "Expecting 'else', 'if', 'import', or an identifier.\n" | 684 -> "Expecting '['.\n" | 682 -> "Expecting an expression.\n" | 681 -> "Expecting '='.\n" | 680 -> "Expecting a value type.\n" | 677 -> "Assuming that the expression list is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 675 -> "Expecting ']'.\n<3>This '[' opens the enclosing construct.\n" | 673 -> "Expecting ']'.\n<5>This '[' opens the enclosing construct.\n" | 671 -> "Assuming that the condition is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 668 -> "Expecting ')'.\n<6>This '(' opens the enclosing construct.\n" | 667 -> "Expecting an integer.\n" | 666 -> "Expecting ','.\n" | 665 -> "Expecting an integer.\n" | 664 -> "Expecting ','.\n" | 663 -> "Expecting an integer.\n" | 661 -> "Expecting a condition literal.\n" | 651 -> "Expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 647 -> "Expecting '(', ')', ',', or a comparison operator.\n" | 646 -> "Expecting a condition.\n" | 645 -> "Expecting '('.\n" | 644 -> "Expecting 'if'.\n" | 643 -> "Assuming that the attribute expression is complete, expecting an attribute guard.\n" | 640 -> "Expecting a block.\n" | 639 -> "Expecting a block, or a block type.\n" | 637 -> "Expecting a block.\n" | 635 -> "Expecting a block.\n" | 634 -> "Assuming that the condition expression is complete, expecting '=>', or a block.\n" | 633 -> "Expecting a condition expression.\n" | 631 -> "Expecting a block.\n" | 630 -> "Expecting a block, or a block type.\n" | 628 -> "Expecting '}'.\n<3>This '{' opens the enclosing construct.\n" | 627 -> "Expecting '}', or a trycatch all.\n<2>This '{' opens the enclosing construct.\n" | 624 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 622 -> "Expecting '[', or '{'.\n" | 621 -> "Expecting 'catch'.\n" | 620 -> "Expecting a block.\n" | 619 -> "Expecting a block, or a block type.\n" | 616 -> "Expecting '}'.\n<3>This '{' opens the enclosing construct.\n" | 614 -> "Expecting a block.\n" | 613 -> "Expecting '=>'.\n" | 612 -> "Expecting '}', or a catch-all clause.\n<2>This '{' opens the enclosing construct.\n" | 607 -> "Expecting a block.\n" | 606 -> "Expecting '=>'.\n" | 603 -> "Expecting '{'.\n" | 602 -> "Expecting 'catch'.\n" | 601 -> "Expecting a block.\n" | 600 -> "Expecting a block, or a block type.\n" | 597 -> "Expecting an expression.\n" | 595 -> "Assuming that the index expression is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 594 -> "Expecting an index expression.\n" | 593 -> "Syntax error\n" | 590 -> "Expecting a block.\n" | 589 -> "Assuming that the statement is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 588 -> "Syntax error\n" | 587 -> "Assuming that the argument list is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 586 -> "Expecting an argument list.\n" | 585 -> "Syntax error\n" | 584 -> "Expecting an expression.\n" | 581 -> "Expecting a label name.\n" | 580 -> "Expecting '''.\n" | 578 -> "Expecting an expression.\n" | 577 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 576 -> "Expecting a labels else.\n" | 575 -> "Expecting '['.\n" | 573 -> "Expecting an expression.\n" | 569 -> "Expecting an expression.\n" | 554 -> "Expecting an expression.\n" | 552 -> "Expecting a value type.\n" | 550 -> "Expecting an expression.\n" | 544 -> "Expecting an expression.\n" | 542 -> "Assuming that the let pattern is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 538 -> "Expecting a value type.\n" | 535 -> "Expecting a let pattern.\n" | 533 -> "Expecting '(', or a simple pattern.\n" | 528 -> "Assuming that the expression list is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 527 -> "Expecting an expression list.\n" | 526 -> "Expecting '('.\n" | 525 -> "Expecting a tag name.\n" | 523 -> "Expecting an expression.\n" | 522 -> "Expecting a statement.\n" | 521 -> "Expecting '('.\n" | 520 -> "Assuming that the condition expression is complete, expecting ':', or a block.\n" | 516 -> "Expecting '}'.\n<3>This '{' opens the enclosing construct.\n" | 514 -> "Expecting a block.\n" | 513 -> "Expecting '=>'.\n" | 512 -> "Expecting a match default.\n" | 508 -> "Expecting a block.\n" | 507 -> "Expecting '=>'.\n" | 503 -> "Expecting a reference type.\n" | 502 -> "Expecting ':'.\n" | 498 -> "Syntax error\n" | 496 -> "Assuming that the expression list is complete, expecting ')'.\n<4>This '(' opens the enclosing construct.\n" | 495 -> "Expecting an expression list.\n" | 492 -> "Assuming that the parenthesized expression is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 490 -> "Assuming that the array body is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 488 -> "Assuming that the array body is complete, expecting ']'.\n<4>This '[' opens the enclosing construct.\n" | 483 -> "Expecting a length expression.\n" | 477 -> "Expecting a length expression.\n" | 476 -> "Expecting ';'.\n" | 473 -> "Expecting a length expression.\n" | 472 -> "Syntax error\n" | 471 -> "Expecting an expression.\n" | 469 -> "Expecting an array body.\n" | 466 -> "Assuming that the structure is complete, expecting '}'.\n<4>This '{' opens the enclosing construct.\n" | 464 -> "Expecting '}'.\n<4>This '{' opens the enclosing construct.\n" | 463 -> "Expecting '..', or a structure.\n" | 462 -> "Expecting '|'.\n" | 460 -> "Assuming that the structure is complete, expecting '}'.\n<4>This '{' opens the enclosing construct.\n" | 459 -> "Expecting a structure.\n" | 457 -> "Assuming that the structure field is complete, expecting ',', or '}'.\n<2>This '{' opens the enclosing construct.\n" | 455 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 451 -> "Assuming that the structure is complete, expecting '}'.\n<4>This '{' opens the enclosing construct.\n" | 448 -> "Expecting a block.\n" | 446 -> "Expecting a block.\n" | 444 -> "Expecting a block type.\n" | 443 -> "Assuming that the condition expression is complete, expecting '=>', or a block.\n" | 439 -> "Expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 434 -> "Expecting a block.\n" | 433 -> "Expecting ':'.\n" | 432 -> "Expecting a label name.\n" | 429 -> "Expecting '{'.\n" | 428 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 425 -> "Expecting a label name.\n" | 424 -> "Expecting '''.\n" | 423 -> "Expecting ','.\n" | 422 -> "Expecting a label name.\n" | 421 -> "Expecting a labels else.\n" | 420 -> "Expecting ',', or ':'.\n" | 419 -> "Expecting a label name.\n" | 418 -> "Expecting a labels else, or an index expression.\n" | 417 -> "Syntax error\n" | 416 -> "Syntax error\n" | 415 -> "Syntax error\n" | 414 -> "Syntax error\n" | 413 -> "Expecting an expression.\n" | 412 -> "Expecting a descriptor operand.\n" | 411 -> "Syntax error\n" | 410 -> "Syntax error\n" | 409 -> "Expecting an expression.\n" | 408 -> "Expecting a descriptor operand.\n" | 407 -> "Syntax error\n" | 406 -> "Syntax error\n" | 401 -> "Assuming that the argument list is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 396 -> "Expecting an expression.\n" | 394 -> "Expecting an identifier.\n" | 389 -> "Syntax error\n" | 388 -> "Expecting an expression.\n" | 387 -> "Syntax error\n" | 386 -> "Expecting an expression.\n" | 385 -> "Syntax error\n" | 384 -> "Expecting an expression.\n" | 383 -> "Syntax error\n" | 382 -> "Expecting an expression.\n" | 381 -> "Syntax error\n" | 380 -> "Expecting an expression.\n" | 379 -> "Syntax error\n" | 378 -> "Expecting an expression.\n" | 377 -> "Syntax error\n" | 376 -> "Expecting an expression.\n" | 375 -> "Syntax error\n" | 374 -> "Expecting an expression.\n" | 373 -> "Syntax error\n" | 372 -> "Expecting an expression.\n" | 371 -> "Syntax error\n" | 370 -> "Expecting an expression.\n" | 369 -> "Syntax error\n" | 368 -> "Expecting an expression.\n" | 367 -> "Syntax error\n" | 366 -> "Expecting an expression.\n" | 365 -> "Syntax error\n" | 364 -> "Expecting an expression.\n" | 363 -> "Syntax error\n" | 362 -> "Expecting an expression.\n" | 360 -> "Expecting an expression.\n" | 358 -> "Expecting an expression.\n" | 356 -> "Expecting an expression.\n" | 354 -> "Expecting an expression.\n" | 353 -> "Assuming that the then branch is complete, expecting ':'.\n" | 352 -> "Expecting a then branch.\n" | 349 -> "Expecting an expression.\n" | 347 -> "Expecting an expression.\n" | 345 -> "Expecting an expression.\n" | 343 -> "Expecting an expression.\n" | 341 -> "Expecting an expression.\n" | 339 -> "Expecting an expression.\n" | 337 -> "Expecting an expression.\n" | 336 -> "Expecting a block.\n" | 333 -> "Expecting a block, or a branch expression.\n" | 329 -> "Expecting an expression.\n" | 328 -> "Syntax error\n<2>This '(' opens the enclosing construct.\n" | 327 -> "Expecting an expression.\n" | 326 -> "Expecting '('.\n" | 325 -> "Expecting a descriptor operand.\n" | 321 -> "Expecting a function type.\n" | 320 -> "Expecting '!', 'fn', or a heap type.\n" | 319 -> "Expecting '!', '?', 'fn', or a heap type.\n" | 317 -> "Expecting '?', a cast type, or a descriptor operand.\n" | 314 -> "Expecting an expression.\n" | 312 -> "Expecting an expression.\n" | 310 -> "Expecting 'descriptor', or an identifier.\n" | 308 -> "Expecting a reference type.\n" | 306 -> "Expecting an expression.\n" | 303 -> "Assuming that the index expression is complete, expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 302 -> "Expecting an index expression.\n" | 299 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 292 -> "Expecting a label name.\n" | 291 -> "Expecting ''', or an identifier.\n" | 290 -> "Expecting '->'.\n" | 288 -> "Expecting an on-clause list.\n" | 286 -> "Expecting an expression.\n" | 284 -> "Expecting an expression.\n" | 283 -> "Expecting ':'.\n" | 282 -> "Expecting an argument list.\n" | 279 -> "Expecting an expression.\n" | 278 -> "Expecting an expression.\n" | 277 -> "Expecting a label name.\n" | 276 -> "Expecting '''.\n" | 275 -> "Expecting an expression.\n" | 274 -> "Expecting '?', a descriptor operand, or a reference type.\n" | 273 -> "Expecting a label name.\n" | 272 -> "Expecting '''.\n" | 271 -> "Expecting an expression.\n" | 270 -> "Expecting '?', a descriptor operand, or a reference type.\n" | 269 -> "Expecting a label name.\n" | 268 -> "Expecting '''.\n" | 267 -> "Expecting an expression.\n" | 266 -> "Expecting a label name.\n" | 265 -> "Expecting '''.\n" | 264 -> "Expecting an expression.\n" | 263 -> "Expecting a label name.\n" | 262 -> "Expecting '''.\n" | 260 -> "Expecting an expression.\n" | 258 -> "Expecting a block.\n" | 257 -> "Expecting a block, or a block type.\n" | 255 -> "Expecting an expression.\n" | 253 -> "Expecting a string.\n" | 251 -> "Expecting a condition expression.\n" | 248 -> "Expecting an expression.\n" | 242 -> "Expecting '}'.\n<4>This '{' opens the enclosing construct.\n" | 241 -> "Expecting '..', or a structure.\n" | 240 -> "Expecting ',', ':', '|', or '}'.\n<2>This '{' opens the enclosing construct.\n" | 238 -> "Expecting '..', '}', a descriptor operand, a structure field, or an identifier.\n<1>This '{' opens the enclosing construct.\n" | 237 -> "Expecting an array body, or an identifier.\n" | 235 -> "Expecting a block.\n" | 234 -> "Expecting a block, or a block type.\n" | 233 -> "Expecting a parenthesized expression, or an expression.\n" | 232 -> "Expecting an expression.\n" | 231 -> "Expecting an expression.\n" | 228 -> "Expecting an expression.\n" | 227 -> "Expecting a condition expression.\n" | 226 -> "Syntax error\n" | 225 -> "Expecting ':'.\n" | 224 -> "Expecting a label name.\n" | 223 -> "Expecting an attribute expression.\n" | 222 -> "Expecting '=', or an attribute guard.\n" | 221 -> "Expecting 'import', or an identifier.\n" | 220 -> "Expecting '['.\n" | 218 -> "Expecting an expression list.\n" | 217 -> "Expecting '('.\n" | 215 -> "Expecting a tag name.\n" | 212 -> "Expecting '}'.\n<3>This '{' opens the enclosing construct.\n" | 209 -> "Expecting a block.\n" | 208 -> "Expecting '=>'.\n" | 206 -> "Expecting a block.\n" | 205 -> "Expecting '&', or '=>'.\n" | 204 -> "Expecting '}', or a trycatch all.\n<2>This '{' opens the enclosing construct.\n" | 199 -> "Expecting a block.\n" | 198 -> "Expecting '=>'.\n" | 196 -> "Expecting a block.\n" | 195 -> "Expecting '&', or '=>'.\n" | 188 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 185 -> "Expecting a label name.\n" | 184 -> "Expecting '''.\n" | 183 -> "Expecting '->'.\n" | 181 -> "Expecting a label name.\n" | 180 -> "Expecting '''.\n" | 179 -> "Expecting '&', or '->'.\n" | 177 -> "Expecting a label name.\n" | 176 -> "Expecting '''.\n" | 175 -> "Expecting '->'.\n" | 123 -> "Expecting a label name.\n" | 122 -> "Expecting '''.\n" | 121 -> "Expecting '&', or '->'.\n" | 119 -> "Expecting '[', or '{'.\n" | 118 -> "Expecting 'catch'.\n" | 117 -> "Expecting a block.\n" | 116 -> "Expecting a block, or a block type.\n" | 115 -> "Expecting an expression.\n" | 111 -> "Expecting a block.\n" | 104 -> "Expecting a result type.\n" | 102 -> "Assuming that the parameter types are complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 99 -> "Expecting parameter types.\n" | 98 -> "Expecting a block, or a block type.\n" | 96 -> "Expecting a condition expression.\n" | 95 -> "Expecting an attribute expression.\n" | 94 -> "Expecting '=', or an attribute guard.\n" | 93 -> "Expecting 'else', 'if', 'import', or an identifier.\n" | 92 -> "Expecting '!', or '['.\n" | 90 -> "Expecting ';'.\n" | 88 -> "Expecting ';'.\n" | 86 -> "Expecting ';'.\n" | 85 -> "Expecting a composite type.\n" | 84 -> "Expecting a type name.\n" | 83 -> "Expecting 'descriptor', or a composite type.\n" | 82 -> "Expecting a type name.\n" | 79 -> "Expecting ';'.\n" | 75 -> "Expecting a type name.\n" | 74 -> "Expecting a composite type.\n" | 73 -> "Expecting a type name.\n" | 64 -> "Assuming that the result type is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 58 -> "Expecting ')', or a result type.\n<1>This '(' opens the enclosing construct.\n" | 57 -> "Expecting a result type.\n" | 56 -> "Syntax error\n" | 55 -> "Assuming that the parameter list is complete, expecting ')'.\n<2>This '(' opens the enclosing construct.\n" | 49 -> "Expecting a value type.\n" | 48 -> "Expecting ')', ',', or ':'.\n" | 47 -> "Expecting a parameter list.\n" | 46 -> "Expecting a function type.\n" | 44 -> "Assuming that the structure type is complete, expecting '}'.\n<2>This '{' opens the enclosing construct.\n" | 40 -> "Assuming that the structure type is complete, expecting '}'.\n<4>This '{' opens the enclosing construct.\n" | 38 -> "Expecting a field type.\n" | 37 -> "Expecting ':'.\n" | 33 -> "Expecting a structure type.\n" | 31 -> "Expecting ',', or '}'.\n<2>This '{' opens the enclosing construct.\n" | 29 -> "Expecting '..', or a structure type.\n" | 23 -> "Expecting a heap type.\n" | 21 -> "Expecting '!', or a heap type.\n" | 19 -> "Expecting '!', '?', or a heap type.\n" | 17 -> "Expecting a storage type.\n" | 15 -> "Expecting ']'.\n<2>This '[' opens the enclosing construct.\n" | 13 -> "Expecting a field type.\n" | 12 -> "Expecting 'describes', 'descriptor', or a composite type.\n" | 10 -> "Expecting 'describes', 'descriptor', 'open', or a composite type.\n" | 9 -> "Expecting '='.\n" | 7 -> "Expecting a type name.\n" | 6 -> "Expecting ':', or '='.\n" | 4 -> "Expecting a type name.\n" | 0 -> "Expecting a dummy ctx.\n" | _ -> raise Not_found
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>