summary refs log tree commit diff stats
path: root/compiler/aliases.nim
Commit message (Collapse)AuthorAgeFilesLines
* Implement Markdown definition lists (+ migration) (#20333)Andrey Makarov2022-09-111-1/+6
| | | | | | | | | | | | | | | Implements definition lists Markdown extension adopted in a few implementations including: * [Pandoc]( https://pandoc.org/MANUAL.html#definition-lists) * [kramdown]( https://kramdown.gettalong.org/quickref.html#definition-lists) * [PHP extra Markdown]( https://michelf.ca/projects/php-markdown/extra/#def-list) Also affected files have been migrated. RST definition lists are turned off for Markdown: this solves the problem of broken formatting mentioned in https://github.com/nim-lang/Nim/pull/20292.
* move assertions out of system (#19599)flywind2022-03-231-0/+3
|
* Fixed objects being erroneously zeroed out before object construction ↵Neelesh Chandola2019-12-051-0/+3
| | | | (#12814) [backport]
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-14/+14
| | | | | | | | | | | | | | | | | | * Cleanup compiler code base * Unify add calls * Unify len invocations * Unify range operators * Fix oversight * Remove {.procvar.} pragma * initCandidate -> newCandidate where reasonable * Unify safeLen calls
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-3/+3
| | | | | * Remove sonsLen * Use Indexable
* removed unused imports [refactoring]Andreas Rumpf2019-08-081-1/+1
|
* fixes #11525Andreas Rumpf2019-06-261-1/+1
|
* Fix #9844 (#11216)Clyybber2019-05-091-1/+8
| | | | * Fixes #9844
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-3/+3
|
* more modules compile againAndreas Rumpf2018-05-121-2/+2
|
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-1/+1
|
* fixes #668Araq2017-12-151-1/+7
|
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-1/+1
|
* removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-2/+2
| | | | instead in preparation for further bugfixes
* fixes #4673Andreas Rumpf2016-09-011-1/+2
|
* Fix issue #2245Roger Shi2015-09-081-1/+1
|
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-30/+30
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* updated the compiler to use the new symbol namesAraq2014-08-281-3/+3
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-4/+4
|
* case consistency part 4Araq2013-12-271-3/+3
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* codegen uses alias analysis to generate better codeAraq2011-12-101-1/+1
|
* alias analysis as required for the code gen and the HLOAraq2011-12-081-0/+182
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