summary refs log tree commit diff stats
path: root/compiler/rodwrite.nim
Commit message (Expand)AuthorAgeFilesLines
* small steps for making --symbolFiles:on work againAraq2015-07-201-94/+95
* CRC -> HashFlaviu Tamas2015-07-031-8/+8
* securehash: Keep module name consistentAdam Strzelecki2015-06-091-1/+2
* Use sha1 instead of crcFlaviu Tamas2015-05-261-2/+2
* Rename crc module to "secure_hash"Flaviu Tamas2015-05-231-1/+1
* Clean up crc moduleFlaviu Tamas2015-05-231-4/+4
* compiler_ropes: ropeToStr -> $Jacek Sieka2015-04-011-2/+2
* Fix typosFederico Ceratto2015-02-151-1/+1
* implemented 'guard' annotationAraq2014-09-211-3/+0
* Nimrod renamed to NimAraq2014-08-281-2/+2
* renamefestAraq2014-08-231-1/+1
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
* case consistency: next stepsAraq2013-12-291-5/+5
* case consistency part 4Araq2013-12-271-26/+26
* the compiler can now deal with multiple modules of the same nameAraq2013-09-261-1/+8
* support for multiple modules of the same name; niminst supports 'platforms'; ...Araq2013-09-241-1/+2
* 'nimrod pretty' usableAraq2013-07-311-7/+3
* Merge branch 'master' of gh:/Araq/Nimrod into upstreamZahary Karadjov2013-05-041-0/+3
|\
| * rod file viewer for easier debugging of rod filesAraq2013-04-041-0/+3
| * Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* | containerID is no longer needed for genericsZahary Karadjov2013-03-011-3/+0
|/
* merged upstream masterZahary Karadjov2013-01-271-3/+3
|\
| * constraint now part of the parameter symbol and not of the typeAraq2012-12-051-3/+3
* | CaaS in-memory cachingZahary Karadjov2012-11-281-6/+7
* | caas is now drivable through stdinZahary Karadjov2012-11-281-7/+1
|/
* term rewriting macros fully implemented; still buggyAraq2012-09-031-0/+3
* first steps towards term rewriting macrosAraq2012-08-301-2/+2
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* path canonicalization for imported modules, relative paths written in rod filesZahary Karadjov2011-12-111-8/+9
* bugfixes for .rod files and visual C++Araq2011-12-031-0/+1
* cleaned up configuration file handling and documented the new behaviourAraq2011-11-301-1/+1
* implemented 'let' statementAraq2011-11-291-9/+2
* compilation cache: fixed recently introduced bug (lazy loading of bodies)Araq2011-11-061-5/+5
* lazy loading of body ast implementedAraq2011-10-301-1/+3
* compilation cache: slurped files are a dependency tooAraq2011-10-301-1/+1
* compilation cache: various bugfixes; works for the compiler itselfAraq2011-10-271-32/+46
* compilation cache: mostly working; generics not yetAraq2011-10-251-9/+16
* compilation cache: multi methods now workAraq2011-10-241-3/+2
* compilation cache: better dependency checkingAraq2011-10-231-0/+10
* compilation cache: small fixes; methods still not workingAraq2011-10-231-2/+3
* compilation cache: methods have a chance to workAraq2011-10-231-4/+12
* rod files: next trivial examples workingAraq2011-10-221-1/+1
* preparations for proper memmap'ed filesAraq2011-10-221-8/+16
* bugfix: nil -> emptyNodeAraq2011-10-221-1/+1
* bugfixes for ROD file generation; nimcache dir is now flatAraq2011-10-201-5/+5
* much more efficient rod file generationAraq2011-10-181-0/+1
* much more efficient rod file generationAraq2011-10-181-212/+307
* support for C++ code generation; importcpp and importobjc pragmasAraq2011-08-071-2/+2
* doc improvements; added lazarus exampleAraq2011-07-241-5/+5
* intsets are now a proper module and part of the stdlibAraq2011-06-141-3/+3
/a> 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