summary refs log tree commit diff stats
path: root/compiler/ast.nim
Commit message (Expand)AuthorAgeFilesLines
...
* | Merge branch 'devel' into araqAndreas Rumpf2017-07-131-7/+14
|\|
| * Fix #4020; Better handling of templates within conceptsZahary Karadjov2017-06-201-1/+3
| * cleanup of in/out covariance handlingAndreas Rumpf2017-05-171-7/+5
| * enforce the covariance rules for user-defined generic typesZahary Karadjov2017-05-131-6/+8
| * doh, forgot to add all files in the previous commitZahary Karadjov2017-05-121-1/+2
| * support for external types with covariant generic paramsZahary Karadjov2017-05-081-0/+4
* | Merge branch 'zahary' into araqAndreas Rumpf2017-05-161-0/+5
|\|
| * lift parameter-less do block to lambdasZahary Karadjov2017-04-101-0/+1
| * fix the do notation when used with procsZahary Karadjov2017-04-091-0/+1
| * Restore the Nim's 0.14 proper handling of generic aliasesZahary Karadjov2017-04-081-0/+3
* | precise stack scanning for Nim's GCs; work in progressAndreas Rumpf2017-04-191-0/+3
|/
* proper error reporting for concepts and the introduction of the {.explain.} p...Zahary Karadjov2017-03-241-0/+1
* implement the special treatment of explicit type params in conceptsZahary Karadjov2017-03-241-0/+2
* infer static parameters even when more complicated arithmetic is involvedZahary Karadjov2017-03-241-1/+11
* support derived values in non-generic user type classesZahary Karadjov2017-03-241-0/+3
* support for inferring static[T] concept paramsZahary Karadjov2017-03-241-0/+4
* introduce tyInferred for the unbound concept type paramsZahary Karadjov2017-03-241-11/+23
* concept type params inference working in basic examplesZahary Karadjov2017-03-241-0/+1
* Merge branch 'devel' of github.com:nim-lang/Nim into develAraq2017-03-141-0/+2
|\
| * Merge branch 'devel' into faster-nimsuggestAndreas Rumpf2017-03-141-0/+2
| |\
| | * Fixes #5167 and related problems (#5475)zah2017-03-121-0/+2
| * | nimsuggest: make tests green againAraq2017-03-101-2/+2
| |/
* / fixes #5529; don't merge type visibility flagsAraq2017-03-141-3/+3
|/
* removed compiler internal list implementation (#5371)Arne Döring2017-02-221-2/+4
* fixes #5383Araq2017-02-161-2/+1
* Merge branch 'devel' into feature/3691Dominik Picheta2017-02-071-1/+2
|\
| * fixes #5285Andreas Rumpf2017-02-041-1/+2
* | Fixes based on @Araq's feedback.Dominik Picheta2017-02-011-1/+1
* | Fixes #3691.Dominik Picheta2017-02-011-1/+10
* | WIP implementation of `except ExcType as ident` syntax. Refs #3691.Dominik Picheta2017-02-011-0/+7
|/
* make tsigbreak.nim compileAndreas Rumpf2016-12-121-1/+2
* further progressAraq2016-11-281-0/+2
* removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-6/+6
* bootstrapping works againAraq2016-11-121-4/+4
* big refactoring: step 1Araq2016-10-311-10/+0
* clean up tyMutable remnantsJacek Sieka2016-10-241-3/+3
* clean up tyConst remnantsJacek Sieka2016-10-241-1/+1
* clean up tyBigNum remnantsJacek Sieka2016-10-241-2/+6
* remove remnants of tyIterJacek Sieka2016-10-241-1/+1
* fixes #4803Andreas Rumpf2016-09-241-0/+3
* C++ backend: use .noInit pragma for non-public default constructors; refs #4687Andreas Rumpf2016-09-041-2/+2
* MergedAraq2016-08-271-27/+1
|\
| * fixes #3606Andreas Rumpf2016-08-261-1/+1
| * remove TLoc.heapRootJacek Sieka2016-08-171-3/+0
| * remove unused stuffJacek Sieka2016-08-091-23/+0
* | next steps in getting symbol files to work againAraq2016-08-161-7/+2
|/
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-3/+3
* remove sfFakeConstJacek Sieka2016-07-301-1/+0
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-0/+2
* generic multi-methods should work nowAndreas Rumpf2016-07-281-0/+1
a id='n654' href='#n654'>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