summary refs log tree commit diff stats
path: root/compiler/renderer.nim
Commit message (Collapse)AuthorAgeFilesLines
* fewer temporary string allocations for the compiler's renderer (#7484)Arne Döring2018-04-041-15/+20
|
* Merge branch 'devel' into nimv2Andreas Rumpf2018-01-081-0/+8
|\
| * fixes #7019Andreas Rumpf2018-01-081-0/+8
| |
* | preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-2/+2
|/
* fixes #6972Araq2017-12-291-0/+1
|
* Merge branch 'devel' of github.com:nim-lang/Nim into develAraq2017-12-211-2/+11
|\
| * Use escape sequences rather than hex in string/char literals (#6941)Mathias Stearn2017-12-181-2/+11
| | | | | | | | This should makes documentation easier to read for people who haven't committed the ascii table to memory.
* | first steps in adding template/macro calls to stack tracesAraq2017-12-211-2/+2
|/
* renderer.nim: fixes a long standing bug that kept triple string literals ↵Araq2017-12-171-1/+1
| | | | from being rendered properly
* renderer.nim: support for outputting symbol magics for debuggingAraq2017-11-301-1/+4
|
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
|
* fixes c2nim regression; do not produce more newlinesAndreas Rumpf2017-10-191-18/+21
|
* some progress on the nimpretty tool; still not readyAraq2017-10-161-15/+53
|
* fixes a renderer regression that affects c2nimAndreas Rumpf2017-10-101-1/+4
|
* nimpretty bugfixAndreas Rumpf2017-10-061-1/+3
|
* beginnings of the new nimpretty tool; still unusableAndreas Rumpf2017-10-051-149/+159
|
* 'with' and 'without' are not keywords anymoreAraq2017-09-301-2/+2
|
* breaking change: getAst strips away pointless nnkStmtList nodes; node ↵Andreas Rumpf2017-09-261-1/+7
| | | | rendering of nnkStmtList without wrong indentation
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-1/+4
|
* Fix #6295 (#6296)BigEpsilon2017-08-301-1/+1
|
* when displaying proc signatures, don't render the implicit generic paramsZahary Karadjov2017-03-241-8/+19
|
* fixes #5467Araq2017-03-071-1/+5
|
* removed compiler internal list implementation (#5371)Arne Döring2017-02-221-1/+1
|
* removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-1/+2
| | | | instead in preparation for further bugfixes
* big refactoring: step 1Araq2016-10-311-2/+0
|
* clean up tyMutable remnantsJacek Sieka2016-10-241-2/+1
|
* clean up tyConst remnantsJacek Sieka2016-10-241-1/+1
|
* remove unused stuffJacek Sieka2016-08-091-20/+1
|
* gensym'ed symbols are rendered with their ID for much easier debuggingAndreas Rumpf2016-07-081-2/+6
|
* fixes #1713Andreas Rumpf2016-05-301-1/+5
|
* small bugfix for the AST rendererAndreas Rumpf2016-04-171-1/+1
|
* fixes #3868Andreas Rumpf2016-03-041-16/+32
|
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-3/+6
|
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-3/+4
|
* made AST renderer more robust for wrong macrosAndreas Rumpf2016-02-191-61/+68
|
* make rendering of typeof operator clearer; refs #3710Andreas Rumpf2016-01-261-2/+4
|
* implements multi-line-comments; pounds are stripped from the doc commentsAndreas Rumpf2016-01-161-14/+5
|
* made closure iterators tests green, updated docsAndreas Rumpf2015-12-311-0/+2
|
* source code renderer doesn't produce trailing whitespace anymoreAraq2015-07-121-4/+19
|
* Fixed renderer for asm node in JSyglukhov2015-05-281-1/+2
|
* fixes #2509Araq2015-04-111-0/+1
|
* breaking change: 'concept' is now a keyword and used instead of 'generic'Araq2015-03-231-1/+1
|
* fixes #1805Araq2015-03-211-5/+6
|
* fixes #2366Araq2015-03-211-2/+5
|
* fixes #2287Araq2015-03-121-236/+238
|
* interpret `tuple` as a class and `tuple[]` as the empty tupleMax Zerzouri2015-03-061-4/+6
| | | | | | | | When the indentation syntax is allowed it is always interpreted as a tuple: type Unit = tuple
* Replaced deprecated repeatChar() with repeat() or spaces().Hans Raaf2015-03-041-3/+3
|
* patch required for c2nimAraq2015-01-071-4/+5
|
* cleaned up os.nim; docgen improvementsAraq2014-12-211-5/+11
|
* fixes #1187Araq2014-12-191-2/+2
|
7 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369