summary refs log tree commit diff stats
path: root/compiler/seminst.nim
Commit message (Expand)AuthorAgeFilesLines
...
* fixes #267Zahary Karadjov2013-05-261-19/+84
* switch to a linked list of scopesZahary Karadjov2013-05-111-4/+4
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* merged upstream masterZahary Karadjov2013-01-271-3/+3
|\
| * implemented generic multi methodsAraq2013-01-161-0/+1
| * some fixes for generic first class iteratorsAraq2012-12-151-3/+3
* | remove any traces of the old global generics cacheZahary Karadjov2013-01-271-4/+4
* | store the instantiation cache in the generic symbolZahary Karadjov2012-11-281-20/+16
|/
* implemented return type inferenceZahary Karadjov2012-10-031-3/+8
* improved support for typedesc valuesZahary Karadjov2012-09-251-34/+5
* proc bodies can be expressions with a typeAraq2012-09-221-1/+1
* fixes #194Araq2012-09-201-1/+17
* made more tests green; fixes #201Araq2012-09-121-3/+4
* term rewriting improvementsAraq2012-09-081-0/+1
* implemented generic templatesAraq2012-08-271-1/+4
* next steps to hygienic templatesAraq2012-08-201-2/+1
* top level closures should work; transf is not a pass anymore; next steps for ...Araq2012-08-131-2/+1
* idetools: 'usages' and 'def' should work now; documented js backendAraq2012-08-051-2/+2
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-1/+1
* added proc annotations: macros invoked as pragmasAraq2012-06-261-2/+2
* somewhat working closuresAraq2012-06-191-1/+3
* typedesc and expr paramsZahary Karadjov2012-03-311-1/+1
* generic types can be used like type classes. distinct can be applied to type ...Zahary Karadjov2012-03-251-3/+1
* expr params implemented for procs; paving the way for type classesZahary Karadjov2012-03-221-6/+38
* clean separation of PNimrodNode and tyExprAraq2012-03-161-2/+3
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* proc arguments are in scope when the result type definition is being processedZahary Karadjov2011-12-091-1/+2
* bugfixes: objects still invalid for constants; fixed a typo concerning 'high'...Araq2011-11-151-4/+3
* lazy loading of body ast implementedAraq2011-10-301-4/+7
* compilation cache: mostly working; generics not yetAraq2011-10-251-14/+13
* bugfixes for generics; new threads implementation still brokenAraq2011-09-201-0/+15
* modifyable results for generics; teventemitter worksAraq2011-08-091-2/+1
* fixes #35, fixes #43Araq2011-08-081-1/+2
* bugfix: forwarding of generic procs now worksAraq2011-07-301-13/+30
* bugfixes; step one for 'var T' as return type supportAraq2011-07-281-0/+1
* bugfix: proper cache for generic instantiationsAraq2011-07-211-25/+29
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-1/+1
* preparations for 0.8.12Araq2011-07-101-0/+2
* bugfix: invoking a generic iterator twice triggers a code gen bug (titer2)Araq2011-06-201-0/+3
* bugfix: typeinfo generation for tuplesAraq2011-06-191-9/+6
* big repo cleanupAraq2011-04-121-0/+128
id='n492' href='#n492'>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 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