summary refs log tree commit diff stats
path: root/compiler/semgnrc.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #11188 (#11319)Andreas Rumpf2019-05-241-2/+2
* Replace countup(x, y) with x .. yClyybber2019-05-071-6/+6
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-15/+15
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-1/+1
* Fixes #10727. (#10728)deech2019-02-251-1/+6
* added first version of a nimfind tool for the poor souls that don't have a go...Andreas Rumpf2018-11-141-11/+12
* fixes #8603Araq2018-10-301-1/+8
* Fix regression with runnableExamples in generic exprLemonBoy2018-09-301-5/+5
* fixes #8694Andreas Rumpf2018-09-021-2/+2
* Fix use of custom pragmas in generic procs (#8165)LemonBoy2018-07-011-1/+2
* fixes #7222; fixes #5595; fixes #3747Zahary Karadjov2018-06-161-11/+20
* implements a --nep1:on switch to make the compiler enforce the naming convent...Andreas Rumpf2018-06-131-1/+1
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-8/+8
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-3/+3
* options.nim: no global variables anymoreAndreas Rumpf2018-05-131-1/+1
* semstmts compiles againAndreas Rumpf2018-05-121-40/+40
* first steps in adding template/macro calls to stack tracesAraq2017-12-211-1/+1
* Merge branch 'devel' into araqAndreas Rumpf2017-11-071-0/+2
|\
| * minor breaking change: for loop bodies now get their own scopeAndreas Rumpf2017-11-051-0/+2
* | wipAndreas Rumpf2017-11-021-1/+1
|/
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-3/+3
* .pure enums are much more convenient to use nowAndreas Rumpf2017-09-171-0/+4
* introduce a pre-processing pass for the concept bodiesZahary Karadjov2017-06-201-3/+10
* fixes #5597; wrong eager template instantiation in generic context (#5601)Andreas Rumpf2017-03-241-3/+3
* make tests green againAndreas Rumpf2017-03-021-0/+8
* fixes #5419Andreas Rumpf2017-02-241-1/+5
* More progress towards a working #3691.Dominik Picheta2017-02-031-6/+4
* WIP: `as` with generics.Dominik Picheta2017-02-021-1/+10
* recursive modules are only detected to improve error messagesAndreas Rumpf2016-11-241-2/+2
* fixes #4600Andreas Rumpf2016-08-231-6/+7
* fixes #4555Andreas Rumpf2016-08-021-1/+1
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-2/+2
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-3/+6
* fixes #2377Andreas Rumpf2016-07-081-1/+6
* fixes a critical bug about template instantiations in genericsAndreas Rumpf2016-06-051-2/+2
* first implementation of the new lambda-lifting pass; barely anything worksAndreas Rumpf2015-12-261-2/+2
* fixes regression: NimForum compiles againAraq2015-09-211-8/+2
* fixes #3268Araq2015-09-181-1/+1
* fixes #3329Araq2015-09-181-1/+1
* fixes the most pressing regressions introduced by the new handling of a[i] in...Araq2015-09-161-6/+28
* first attempt to fix 'a[i]' handling in genericsAraq2015-09-121-0/+23
* fixes #1965Araq2015-08-101-2/+2
* breaking change: symbol lookups in generics follows spec more closely; fixes ...Araq2015-08-071-61/+63
* interpret `tuple` as a class and `tuple[]` as the empty tupleMax Zerzouri2015-03-061-1/+1
* Fix documentations for declared (instead of defined)def2015-02-181-1/+1
* nimsuggest improvementsAraq2015-01-301-14/+38
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* fix #1056Zahary Karadjov2014-12-311-1/+2
* fix #1789 (binding to static params during generic proc sigmatch)Zahary Karadjov2014-12-311-1/+7
* fixes #1120Araq2014-12-251-2/+0
href='#n577'>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