summary refs log tree commit diff stats
path: root/lib/pure/asyncmacro.nim
Commit message (Expand)AuthorAgeFilesLines
* simplify asyncfutures, asyncmacro (#17633)Timothee Cour2021-04-141-61/+22
* remove un-needed {.push hint[ConvFromXtoItselfNotNeeded]: off.} in asyncfutur...Timothee Cour2021-04-031-4/+1
* Fix void async in templates (#17562)Ardek Romak2021-03-301-2/+3
* remove {.compileTime.} for procs with NimNode: redundant because of tfTrigger...Timothee Cour2021-03-231-7/+6
* use single backtick (#17115)flywind2021-02-201-5/+5
* styleCheck: Fix some inconsistent identifiers (#16177)ee72020-12-211-1/+1
* ref #5617 add lineinfo to complete (#16102)flywind2020-11-231-3/+8
* fix #9695 asyncmacro: tfuturevar fails when activated [backport: 1.0] (#16090)flywind2020-11-221-1/+2
* fixes #15804 (#15820)Andreas Rumpf2020-11-021-12/+9
* async: removed the 'unown' references, async never worked with --newruntime a...Andreas Rumpf2020-09-201-6/+5
* fix #14846; add macros.extractDocCommentsAndRunnables (#14849)Timothee Cour2020-07-011-3/+3
* fix #13899 defer now works with async (#14723)Timothee Cour2020-06-191-0/+3
* Disable unused warnings for error await template too (#14531)Danil Yarantsev2020-06-011-1/+1
* Disable unused warnings for await in async macro (#14517)Danil Yarantsev2020-05-311-2/+2
* discardable async procs are now an error (#14176)hlaaftana2020-05-011-8/+14
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-281-2/+2
* Make await a template (#12085)Alexander Ivanov2020-04-251-132/+30
* Fix #13889 with testcase (#13896) [backport]Clyybber2020-04-061-1/+1
* macros for proc types, macros for types (#13778)Andreas Rumpf2020-03-311-0/+6
* fixes #13519Araq2020-03-111-1/+1
* [backport] run nimpretty on asyncnarimiran2019-09-301-9/+11
* async macro: general stability improvements [bugfix] (#11787)Andreas Rumpf2019-07-191-10/+13
* newruntime: progress to make 'async' work with --newruntimeAraq2019-07-151-7/+4
* make async tests green againAndreas Rumpf2019-07-111-2/+2
* make more parts of the stdlib compile with --styleCheck:errorAraq2019-07-101-1/+1
* newruntime: async progressAraq2019-07-091-2/+2
* asyncmacro produces 'owned' typesAraq2019-07-091-2/+2
* newruntime for async (#11650)Andreas Rumpf2019-07-051-1/+4
* Fix header inconsistencies in documentation (#11071)Zed2019-04-231-2/+0
* Small change in how tuples are handled in async macroLemonBoy2019-02-041-7/+7
* Restore the docstring during the .async. transform (#10404) [backport]LemonBoy2019-01-221-0/+6
* asyncmacro: add nnkSym support for getName() (#9204)alaviss2018-10-091-1/+1
* Fix regression w/ templates defined in async procLemonBoy2018-10-031-1/+1
* Skip nested procedures in .async. macroLemonBoy2018-09-221-0/+3
* Minor fixes for asyncjs (#8894)LemonBoy2018-09-071-1/+1
* Rip out the `try` transformation in the async macro.Dominik Picheta2018-06-061-105/+6
* Fix some usages of typedesc in async procsZahary Karadjov2018-04-131-1/+3
* fix deprecation warnings in asyncmacro and htmlgen (#7573)Arne Döring2018-04-121-20/+20
* Merge pull request #6962 from nim-lang/fixes/6100Dominik Picheta2018-01-101-0/+6
|\
| * Fixes #6100.Dominik Picheta2017-12-271-0/+6
* | optimized friendly stack tracesAraq2017-12-281-0/+2
* | Rename cb0 to asyncProcName_continue + other improvements to async tracebacks.Dominik Picheta2017-12-281-6/+7
|/
* Remove unneeded comment #6708Anatoly Galiulin2017-11-131-3/+0
* Fix parameter types splitting in multisync macro #6708Anatoly Galiulin2017-11-091-19/+8
* work in progress: new implementation for 'a[^1]'Andreas Rumpf2017-10-291-7/+7
* revert accidentical asyncmacro changeAndreas Rumpf2017-09-211-1/+1
* introduce OnHeapNew and rename TLoc.s to TLoc.storageAndreas Rumpf2017-09-211-1/+1
* workaround so doc2 asynchttpserver works againAndreas Rumpf2017-07-261-3/+3
* Suppress "pointless conversion" hint (#6103)Yuriy Glukhov2017-07-151-0/+2
* Fixes #5738 (#6059)Yuriy Glukhov2017-07-151-3/+7
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 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957