summary refs log tree commit diff stats
path: root/compiler/semstmts.nim
Commit message (Expand)AuthorAgeFilesLines
* bugfixes for the symbol mangling; implements #129Araq2012-07-191-0/+9
* preparations for making 'closure' the default calling convention for proc typesAraq2012-07-161-1/+1
* 'addSon' for types deprecated for 'int literal type' analysis (3)Araq2012-07-091-2/+2
* 'addSon' for types deprecated for 'int literal type' analysis (2)Araq2012-07-091-3/+3
* bugfix: ha.echo should be acceptedAraq2012-07-081-2/+3
* added proc annotations: macros invoked as pragmasAraq2012-06-261-0/+36
* doc2 improvementsAraq2012-06-241-2/+2
* bugfixes for closuresAraq2012-06-211-1/+1
* added another macro regressionAraq2012-06-201-1/+1
* destructor pragmaZahary Karadjov2012-06-071-6/+6
* destructors for case valuesZahary Karadjov2012-06-071-16/+61
* fix bootstrapping on POSIX platformsZahary Karadjov2012-06-061-0/+4
* generate default destructorsZahary Karadjov2012-06-061-8/+98
* Merge branch 'master' of github.com:Araq/Nimrod into upstreamZahary Karadjov2012-06-021-2/+6
|\
| * added system.||; lacks runtime supportAraq2012-05-231-2/+6
* | Added system.staticExec proc for executing external command at compile-timeZahary Karadjov2012-06-021-1/+1
* | codegen for user-defined destructorsZahary Karadjov2012-05-251-1/+71
* | stand-alone except and finally blocksZahary Karadjov2012-05-231-7/+27
|/
* compiler finally supports 'object {.pragma.}' syntaxAraq2012-04-161-1/+1
* avoid duplicated variable names in unrolled loopsZahary Karadjov2012-04-151-2/+6
* fixes #20 properlyZahary Karadjov2012-04-151-3/+2
* fix the usage of definedInScope in pegs.=~Zahary Karadjov2012-04-141-1/+1
* experimental support for preserving local variable names in the generated codeZahary Karadjov2012-04-131-1/+11
* when expressions, proper rendering for nkDo and nkLambda and parser support f...Zahary Karadjov2012-04-051-2/+2
* expr params implemented for procs; paving the way for type classesZahary Karadjov2012-03-221-3/+1
* merged branch overloading-for-macrosZahary Karadjov2012-03-191-2/+1
|\
| * allowing multiple definitions of templatesZahary Karadjov2012-03-141-2/+1
* | clean separation of PNimrodNode and tyExprAraq2012-03-161-8/+8
* | implemented 'static'; macros do not work anymoreAraq2012-03-151-0/+8
|/
* fixes #100Araq2012-03-101-0/+2
* further steps for closure supportAraq2012-02-081-0/+4
* further steps to closure supportAraq2012-02-061-5/+0
* small fixes for tests on windowsAraq2012-01-311-1/+1
* pragma on/off improvements; endb rewrittenAraq2012-01-281-7/+7
* pragma blocks; fixed line information issue with user defined assertionsAraq2012-01-171-0/+14
* implicit invokation of items/pairs iteratorsAraq2012-01-081-24/+42
* bugfix: type alias to generic; generic type not stripped away from for loop v...Araq2012-01-071-1/+4
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* new len(openarray) implementationAraq2011-12-311-1/+1
* make trecinca|b tests greenAraq2011-12-311-1/+1
* bugfix: compiler errors for explicit initialization of thread local variables...Araq2011-12-231-1/+2
* bugfix: the code gen can now handle alias TLock = TSysLock; this fixes thread...Araq2011-12-231-1/+2
* path canonicalization for imported modules, relative paths written in rod filesZahary Karadjov2011-12-111-1/+1
* proc arguments are in scope when the result type definition is being processedZahary Karadjov2011-12-091-2/+4
* path canonicalization and proper project relative pathsZahary Karadjov2011-12-091-1/+1
* 'assert' is now implemented without compiler magicAraq2011-12-041-1/+1
* implemented 'let' statementAraq2011-11-291-11/+14
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-1/+3
* macros and templates can be expanded anywhere where a type is expected.Zahary Karadjov2011-11-181-4/+11
* lazy loading of body ast implementedAraq2011-10-301-15/+15
'>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