summary refs log tree commit diff stats
path: root/compiler/sigmatch.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes a long-standing bug about procvar checkingAraq2013-03-251-4/+4
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* make some tests greenAraq2013-03-031-7/+13
* lazy operand sem'checking (beware)Araq2013-03-021-14/+49
* better overloading resolution for genericsAraq2013-02-281-1/+43
* implements #295Araq2013-01-081-2/+3
* fixes #271Araq2012-12-151-20/+14
* implemented AST based overloadingAraq2012-12-061-4/+15
* implemented generic convertersAraq2012-12-051-3/+16
* disable SSLv2_method for ubuntuAraq2012-12-031-3/+3
* next steps for first class iteratorsAraq2012-11-261-0/+2
* first steps for 'not nil' annotationAraq2012-11-251-18/+19
* next steps for exception trackingAraq2012-11-031-0/+2
* caas barely works nowAraq2012-10-241-0/+2
* Improved support for nkSymChoices in type coercionsZahary Karadjov2012-10-151-2/+2
* fixes #211Zahary Karadjov2012-10-131-8/+9
* fixes #217Araq2012-10-131-6/+6
* syntax compatibility between do blocks and stmt blocksZahary Karadjov2012-10-041-2/+6
* the `is` operator now works with type classes and type variablesZahary Karadjov2012-10-031-32/+5
* implemented return type inferenceZahary Karadjov2012-10-031-1/+6
* improved support for typedesc valuesZahary Karadjov2012-09-251-2/+3
* fixes #186 and the ttypedesc1 test caseZahary Karadjov2012-09-231-15/+15
* fixed incorrect implicit conversion between arrays of different sizes; see #202Zahary Karadjov2012-09-131-13/+12
* first steps towards term rewriting macrosAraq2012-08-301-1/+1
* implemented generic templatesAraq2012-08-271-2/+2
* distinguish properly between nkOpen and nkClosedSymChoiceAraq2012-08-261-1/+1
* openarray/varargs split; breaks bootstrappingAraq2012-08-161-22/+25
* bugfix: typo in actors.nimAraq2012-08-151-0/+12
* next steps for tyVarargs/tyOpenArray splitAraq2012-08-141-0/+4
* idetools: 'usages' and 'def' should work now; documented js backendAraq2012-08-051-14/+32
* idetools improvementsAraq2012-08-031-3/+8
* idetools improvements; preparation of first class iterators; fixes #183Araq2012-08-021-1/+1
* made compiler more robust for idetools; implemented idetools.usagesAraq2012-07-301-12/+16
* optimizations for system.compilesAraq2012-07-201-0/+1
* bugfix: constraint matching for tyGenericInst; implements #130Araq2012-07-191-1/+1
* preparations for making 'closure' the default calling convention for proc typesAraq2012-07-161-1/+3
* improved unsigned supportAraq2012-07-141-1/+2
* overloading resolution finally takes inheritance depth into accountAraq2012-07-111-62/+75
* some more bugfixes for the integer promotion rulesAraq2012-07-101-4/+5
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-3/+3
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-19/+40
* added devel/logging; weakrefs test; next steps for proper unsigned supportAraq2012-07-051-2/+4
* changed integer promotion rules; added math.fmodAraq2012-06-281-25/+31
* more uint related fixesZahary Karadjov2012-06-141-1/+1
* better support for unsigned integers.Zahary Karadjov2012-06-111-0/+8
* implicit generics types as return types. removed the error message for captur...Zahary Karadjov2012-04-211-21/+10
* typedesc and expr paramsZahary Karadjov2012-03-311-14/+65
* generic types can be used like type classes. distinct can be applied to type ...Zahary Karadjov2012-03-251-5/+12
* tyOrdinal now means "integral types". tyTypeClass created to take care of typ...Zahary Karadjov2012-03-221-5/+4
* expr params implemented for procs; paving the way for type classesZahary Karadjov2012-03-221-18/+12
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