summary refs log tree commit diff stats
path: root/lib/pure/asyncmacro.nim
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixes #5995Yuriy Glukhov2017-06-181-1/+1
* Fixes regression introduced by #5739. Improves newNimNode proc.Dominik Picheta2017-05-171-1/+1
* Remove processing hints for async procs.Dominik Picheta2017-05-161-3/+0
* Async macro fixes (#5739)Yuriy Glukhov2017-05-161-20/+18
* Fixes the order in which FutureVar and return completions are made.Dominik Picheta2017-03-271-10/+17
* Add support for `Async | Sync` return types in {.multisync.} macro.Dominik Picheta2017-02-111-21/+34
* Improve error message when a `nil` future is await'ed.Dominik Picheta2017-02-091-3/+5
* Allow .async pragma on methods (#5312)Ruslan Mustakov2017-02-011-2/+2
* deprecated nativesockets.dealloc, use freeAddrInfo instead; fixed stdlib depr...Andreas Rumpf2017-01-301-3/+3
* FutureVar[T] parameters are now completed automatically.Dominik Picheta2016-09-251-8/+43
* Fixes `asyncmacro` compilation in tests.Dominik Picheta2016-09-191-2/+1
* Implements {.multisync.} pragma for async and sync proc combos.Dominik Picheta2016-09-181-0/+110
* Fixes #4170.Dominik Picheta2016-09-171-3/+1
* async: transfer all await/async macro related code to asyncmacro.nim module. ...Eugene Kabanov2016-09-031-0/+373
implemented statusbar widget' href='/akspecs/ranger/commit/ranger/gui/widgets/statusbar.py?id=cfdbb9d634555f7c036861266e308b512f0baeac'>cfdbb9d6 ^
9cce9fab ^
cfdbb9d6 ^
30b25795 ^
9cce9fab ^
30b25795 ^
cfdbb9d6 ^
9cce9fab ^










30b25795 ^
9cce9fab ^

30b25795 ^
9cce9fab ^

cfdbb9d6 ^
























9cce9fab ^

8db3c4b1 ^
9cce9fab ^
3201b163 ^
8db3c4b1 ^
cfdbb9d6 ^
0115ab10 ^
9cce9fab ^
2b82ef62 ^
3201b163 ^
8db3c4b1 ^
9cce9fab ^
3201b163 ^

9cce9fab ^


3201b163 ^

9cce9fab ^
3201b163 ^
9cce9fab ^
cfdbb9d6 ^
9cce9fab ^

3201b163 ^
9cce9fab ^
cfdbb9d6 ^


d3eff0a9 ^
cfdbb9d6 ^
9cce9fab ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185