summary refs log tree commit diff stats
path: root/compiler/parampatterns.nim
Commit message (Collapse)AuthorAgeFilesLines
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-24/+24
| | | | | | | | | | | | | | | | | | * 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
* fixes #12224 (#12225)cooldome2019-09-211-3/+5
| | | | | | * fixes #12224 * improve test
* sink as lvalueAndrii Riabushenko2019-09-021-3/+3
|
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-1/+1
|
* fixes #10942. Lent T bug (#10946)cooldome2019-04-031-5/+12
| | | | | | | | * fixes #10942 * add test * bug build
* fixes #7524Araq2019-01-141-8/+7
|
* Allow taking address of skForVar variables (#8632)LemonBoy2018-08-141-1/+1
| | | Fixes #8630
* guards.nim does compileAndreas Rumpf2018-05-111-26/+27
|
* refactoring: make FileIndex a distinct type; make line information an ↵Andreas Rumpf2018-04-211-1/+2
| | | | uint16; fixes #7654
* make tests green againAndreas Rumpf2018-03-241-3/+8
|
* fixes the 'var T' checkingAndreas Rumpf2018-03-241-5/+2
|
* more checking for 'var T' as return type; refs #7373Andreas Rumpf2018-03-241-1/+29
|
* basic 'lent T' test worksAndreas Rumpf2018-01-211-1/+4
|
* deprecated unary '<'Andreas Rumpf2017-10-291-3/+3
|
* support the full range of type modifiers when declaring concept vars and ↵Zahary Karadjov2017-03-241-0/+7
| | | | testing proc signatures
* fixes #4608Andreas Rumpf2016-10-181-0/+2
|
* some progress on #3832Andreas Rumpf2016-02-081-0/+3
|
* preparations for better handling of 'a[i]' in generics; stmt lists can be ↵Araq2015-09-121-1/+4
| | | | lvalues
* added system.unsafeAddrAraq2015-08-041-9/+11
|
* fix #2585 properlyAraq2015-04-221-1/+3
|
* fixes #2585Araq2015-04-221-1/+1
|
* implemented a[^1] notationAraq2015-03-261-3/+4
|
* fixes #2346Araq2015-03-161-2/+6
|
* fixes #1809; implements overloading based on 'var T'Araq2015-03-141-19/+22
|
* nimsuggest improvementsAraq2015-01-301-1/+1
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* implemented builtin noncopying sliceAraq2014-05-021-1/+4
|
* case consistency improvementsAraq2014-01-111-1/+1
|
* case consistency: next stepsAraq2013-12-291-4/+4
|
* case consistency part 4Araq2013-12-271-2/+2
|
* implemented large parts of the 'not nil' checkingAraq2013-06-091-0/+2
|
* make some tests greenAraq2013-03-031-4/+7
|
* constraint now part of the parameter symbol and not of the typeAraq2012-12-051-2/+2
|
* term rewriting improvementsAraq2012-09-081-3/+56
|
* activated tests for tr macrosAraq2012-09-061-3/+4
|
* bugfixes and improvements for term rewriting macrosAraq2012-09-041-1/+1
|
* term rewriting macros fully implemented; still buggyAraq2012-09-031-0/+205
f='#n658'>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