summary refs log tree commit diff stats
path: root/compiler/evaltempl.nim
Commit message (Expand)AuthorAgeFilesLines
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-3/+3
* fixes #10192Araq2019-05-061-1/+1
* it's spelt callsiteAndreas Rumpf2019-02-221-1/+1
* 32 bit fixes (#10608)Arne Döring2019-02-131-4/+3
* fixes nested gensym'ed parameters; fixes #9476Araq2018-12-081-4/+10
* IC: further progressAraq2018-12-011-1/+1
* docgen: fixes #9432 [backport]Araq2018-10-311-0/+20
* baby steps for incremental compilationAndreas Rumpf2018-05-301-1/+1
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-5/+4
* remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-1/+1
* fixes testament compilationAraq2018-05-141-1/+1
|\
| * Better support for treating templates and macros as symbols.Zahary Karadjov2018-05-071-1/+1
* | more modules compile againAndreas Rumpf2018-05-121-1/+1
* | more modules compile againAndreas Rumpf2018-05-121-10/+18
|/
* allow setting template/macro recursive evaluation limits (#7652)jcosborn2018-04-191-2/+3
* first steps in adding template/macro calls to stack tracesAraq2017-12-211-3/+7
* Fix usage of parameters types in templates #6756 (#6768)Anatoly Galiulin2017-11-291-1/+1
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
* Fix #4020; Better handling of templates within conceptsZahary Karadjov2017-06-201-0/+2
* lift parameter-less do block to lambdasZahary Karadjov2017-04-101-5/+1
* fix the do notation when used with procsZahary Karadjov2017-04-091-1/+5
* Fixes #5167 and related problems (#5475)zah2017-03-121-0/+5
* macros are now checked to not produce cyclic ASTsAndreas Rumpf2017-02-081-1/+0
* make tests green againAraq2016-12-181-1/+1
* fixes #4308, fixes #4905Araq2016-12-181-1/+20
* hotfix: don't crash for wrong template callsAndreas Rumpf2016-06-031-1/+1
* remove funny debug outputAndreas Rumpf2016-05-271-1/+0
* fixes #4227Andreas Rumpf2016-05-271-4/+5
* Merge pull request #3500 from nanoant/patch/fix-3498-generic-args-in-tmplAndreas Rumpf2016-01-141-1/+2
|\
| * fixes #3498Adam Strzelecki2015-10-301-1/+2
* | better nimsuggest supportAraq2015-11-031-4/+4
|/
* fixes #3359Araq2015-09-231-3/+2
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-3/+3
* Disable the new generic params handling for immediate template and macrosZahary Karadjov2015-08-021-1/+11
* fix #1858 again; restores the support for static macro paramsZahary Karadjov2015-08-021-16/+34
* fixes #3044Araq2015-07-021-1/+3
* fixes #1940; code breakage! stricter template evaluationAraq2015-03-071-5/+5
* nimsuggest improvementsAraq2015-01-301-1/+1
* fixes #1915Araq2015-01-121-1/+1
* Revert 5e4ae8dDustin Lacewell2015-01-071-33/+17
* fix #1858; Add support for generic templates and macrosZahary Karadjov2015-01-051-17/+33
* Nimrod renamed to NimAraq2014-08-281-1/+1
* case consistency: next stepsAraq2013-12-291-1/+1
* case consistency part 4Araq2013-12-271-6/+6
* attempt to improve line information for '!=' etc. templatesAraq2013-10-151-32/+13
* bugfix: evalTemplateArgsAraq2012-10-141-1/+1
* term rewriting macros fully implemented; still buggyAraq2012-09-031-10/+52
* first steps to make templates hygienicAraq2012-08-201-0/+83
'n562' href='#n562'>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