summary refs log tree commit diff stats
path: root/lib/core
Commit message (Expand)AuthorAgeFilesLines
* conditional TGenericSeq extensionStefan Talpalaru2015-06-161-3/+7
* Merge branch 'devel' into gogcStefan Talpalaru2015-06-152-81/+86
|\
| * Merge pull request #2643 from grncdr/TAny-and-inheritanceAndreas Rumpf2015-06-071-0/+2
| |\
| | * Resolve base type fields in `[](TAny, string)`Stephen Sugden2015-05-031-0/+2
| * | lib/core - Dropped 'T' from typespdw2015-06-042-81/+84
* | | the Go GC - initial implementationStefan Talpalaru2015-05-311-2/+2
|/ /
* | get rid of deprecated effectsAraq2015-05-281-18/+6
* | Macros: Introduce getType(t: typedesc): NimNodeAdam Strzelecki2015-05-171-0/+6
|/
* macros: added bool literal supportAraq2015-04-201-0/+6
* Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2015-04-201-1/+3
|\
| * add ntys up to ntyNotfowlmouth2015-03-281-1/+3
* | added macros.newTree proc (why didn't we do this earlier?)Araq2015-04-201-0/+6
|/
* prepare for upcoming parsing change of unary operatorsAraq2015-03-221-2/+2
* Rename PNimrodNode to NimNodedef2015-03-171-115/+111
* interpret `tuple` as a class and `tuple[]` as the empty tupleMax Zerzouri2015-03-061-1/+1
* Clone the implementation of cmpIgnoreStyle into macros.nim from typeinfo.nim ...Chris Heller2015-03-031-2/+16
* Remove use of .format() from macros.nim to avoid importing into core. There i...Chris Heller2015-03-031-4/+4
* Make macros.nim expectKind error message with a single TNimrodNodeKind consis...Chris Heller2015-03-021-3/+3
* some love for the testsuite; fixed regressionsAraq2015-03-011-2/+2
* don't use stdout for nimsuggest server modeAraq2015-02-271-4/+5
* disable deprecated warnings for macros moduleAraq2015-02-251-1/+5
* implements a type API for macrosAraq2015-02-241-11/+31
* macros.PNimrodNode is now NimNodeAraq2015-02-241-22/+26
* Fix typosFederico Ceratto2015-02-151-1/+1
* Fix typosFederico Ceratto2015-02-151-1/+1
* fixed minor bugs; cleaned up testsAraq2015-02-121-10/+10
* Update macros.nimdumndummer2015-02-021-1/+1
* Added a few AST-construction shortcuts.Mason McGill2015-01-271-37/+51
* Merge branch 'devel' of https://github.com/Araq/Nim into develAudun Wilhelmsen2015-01-021-0/+2
|\
| * macros.`$` can now turn a nnkSym into a string.Dominik Picheta2014-12-281-0/+2
* | Added support for big 'u64 literalsAudun Wilhelmsen2015-01-021-17/+15
|/
* fixes #1352Araq2014-12-141-2/+7
* more index termsAraq2014-12-111-2/+3
* minor documentation improvementsAraq2014-12-081-3/+6
* deprecated old locking effectsAraq2014-12-081-9/+12
* implements 'defer'Araq2014-12-041-1/+1
* Merge pull request #1643 from def-/fix-locks-caseAndreas Rumpf2014-11-121-106/+2
|\
| * Remove runtime deadlock prevention as deadlock detection at compile-time is a...def2014-11-111-106/+2
| * Fix compile because of case sensitivitydef2014-11-081-1/+1
* | fixes #1473Araq2014-11-121-4/+20
|/
* Merge branch 'devel' into bigbreakAraq2014-11-031-1/+5
|\
| * Adds stringification support for nnkPostfix nodes.Grzegorz Adam Hankiewicz2014-10-111-1/+5
* | nicer error messages (untested)Araq2014-10-261-0/+1
* | make tests greenAraq2014-08-311-9/+11
* | Nimrod renamed to NimAraq2014-08-282-11/+11
* | Nimrod renamed to NimAraq2014-08-284-8/+8
* | more modules updatedAraq2014-08-281-74/+74
* | renamefestAraq2014-08-231-3/+3
|/
* fixes #1450Araq2014-08-141-1/+1
* distinguish between 'defined' and 'declared'Araq2014-08-111-1/+1
>f311acc58 ^
e7140f290 ^
f311acc58 ^









































e7140f290 ^
f311acc58 ^








e7140f290 ^



f311acc58 ^



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
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