summary refs log tree commit diff stats
path: root/compiler/vm.nim
Commit message (Expand)AuthorAgeFilesLines
* cleanup of #4113Andreas Rumpf2016-05-281-27/+27
* getTypeInst and getTypeImpl mostly working now and added testJames Osborn2016-05-041-1/+8
* added getTypeInst which includes generic parametersJames Osborn2016-05-041-12/+21
* fixes #3731Andreas Rumpf2016-04-041-1/+1
* fixes #3804Andreas Rumpf2016-04-041-1/+1
* fixes #3973Andreas Rumpf2016-04-031-2/+5
* fixes #3872Andreas Rumpf2016-03-041-4/+5
* Fixed deprecation warnings while Nim compiles.Hans Raaf2016-01-181-1/+1
* Merge pull request #3651 from jangko/vm_'excl'Andreas Rumpf2015-12-211-1/+1
|\
| * fixed compile time `excl ` cause SIGSEGV #3639jangko2015-12-171-1/+1
* | fixed VM touint conversion #2514jangko2015-12-191-1/+8
|/
* fixes #3546Araq2015-11-181-2/+5
* allows macros to access documentation commentsAraq2015-11-181-0/+1
* msgs: One msgWriteln with optional flagsAdam Strzelecki2015-10-221-2/+2
* compiler/vm: Use stdout too in VM time echoAdam Strzelecki2015-10-161-2/+2
* fixes #3299Araq2015-10-151-1/+4
* added undocumented exportNims pragma for Nimscript supportAraq2015-10-031-0/+25
* vm: Don't fail on unknown enum position to stringAdam Strzelecki2015-09-281-1/+1
* Uint64 to string in pure nim. array[char] to string fixed in vm.Yuriy Glukhov2015-09-141-1/+12
* fixes some regressionsAraq2015-09-121-0/+2
* VM produces objects.Yuriy Glukhov2015-09-051-4/+9
* implemented macros.getImplAraq2015-08-211-0/+8
* preparations for Nimble NimScript integrations; minor cleanupsAraq2015-08-181-0/+4
* implements experimental new config system based on NimScriptAraq2015-08-161-2/+2
* Merge pull request #3177 from zah/generic-types-in-macrosAndreas Rumpf2015-08-141-9/+24
|\
| * Disable the new generic params handling for immediate template and macrosZahary Karadjov2015-08-021-4/+5
| * fix #1858 again; restores the support for static macro paramsZahary Karadjov2015-08-021-9/+23
* | fixes #3192Araq2015-08-071-1/+1
|/
* fixes #3103Araq2015-08-021-2/+4
* emerald project has a chance of workingAraq2015-08-021-4/+5
* staticExec now supports cachingAraq2015-07-151-1/+4
* macros: Introduce sameType(a, b) for node typesAdam Strzelecki2015-07-031-0/+3
* fixes #3028Araq2015-07-011-1/+1
* VM: use stricter notion of equality for NimNodeAraq2015-06-251-1/+2
* fixes #2297, fixes #2946Araq2015-06-181-12/+0
* macros: exprStructuralEquivalent for EqNimrodNodeAdam Strzelecki2015-06-101-1/+5
* Update ast spec about uint literalsdef2015-05-181-1/+1
* Make intVal work for uint literals in the VMdef2015-05-181-1/+1
* marshalling can be done at compile-timeAraq2015-04-251-6/+15
* VM: minor fixes to make lexim workAraq2015-04-201-1/+8
* Improve error message for failed conversion in VMdef2015-03-121-1/+1
* fixes #2252Araq2015-03-041-0/+2
* cleaned up whitespaceAraq2015-03-041-22/+22
* don't use stdout for nimsuggest server modeAraq2015-02-271-4/+8
* implements a type API for macrosAraq2015-02-241-1/+19
* macros.PNimrodNode is now NimNodeAraq2015-02-241-1/+1
* fixes #2167Araq2015-02-201-3/+9
* better error messageAraq2015-02-081-1/+3
* fixes #1989Araq2015-02-011-3/+5
* nimsuggest: first versionAraq2015-01-271-1/+1
4'>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