summary refs log tree commit diff stats
path: root/lib/system.nim
Commit message (Expand)AuthorAgeFilesLines
...
| * added system.||; lacks runtime supportAraq2012-05-231-0/+9
| * TInteger vs TOrdinalAraq2012-05-221-1/+5
| * added another system.getStackTraceAraq2012-05-201-0/+5
* | Added system.staticExec proc for executing external command at compile-timeZahary Karadjov2012-06-021-2/+13
|/
* Fixes for embeddable devices (--os:standalone)dom962012-05-201-8/+8
* added system.getStackTrace; docgen refactoring (incomplete)Araq2012-05-061-0/+3
* documentation improvements; GC_step improvedAraq2012-04-211-2/+2
* Finally rebuilt the sources to take advantage of the new type system capabili...Zahary Karadjov2012-04-211-2/+17
* implicit generics types as return types. removed the error message for captur...Zahary Karadjov2012-04-211-2/+4
* produce errors on proc types with implicit empty param lists.Zahary Karadjov2012-04-201-3/+3
* Proper C scopes for if, try and case statementsZahary Karadjov2012-04-121-6/+6
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-04-011-3/+25
|\
| * Merge branch 'master' of github.com:Araq/Nimrod into upstreamZahary Karadjov2012-03-311-25/+29
| |\
| * | generic types can be used like type classes. distinct can be applied to type ...Zahary Karadjov2012-03-251-3/+25
* | | added strutils.parseEnum; fixes #95Araq2012-04-011-1/+0
| |/ |/|
* | implemented support for the AVR CPU and standalone OSAraq2012-03-311-25/+29
|/
* merged branch overloading-for-macrosZahary Karadjov2012-03-191-13/+13
|\
| * updated system.nim to take advantage of the new template capabilitiesZahary Karadjov2012-03-151-13/+13
* | unittest module compiles againAraq2012-03-171-1/+1
* | rebuilt C sourcesAraq2012-03-171-7/+0
* | clean separation of PNimrodNode and tyExprAraq2012-03-161-0/+5
* | first steps for cleaner static/const distinctionAraq2012-03-131-6/+6
|/
* helper templates static, eval and emit for easier compile-time code evaluationZahary Karadjov2012-02-241-0/+14
* added system.setControlCHook, system.writeStackTraceAraq2012-02-191-0/+8
* added 'system.shallow'Araq2012-02-091-2/+2
* added 'system.shallow'Araq2012-02-091-1/+22
* further steps for closure support; added 'system.rawProc', 'system.rawEnv'Araq2012-02-081-0/+14
* further steps to closure supportAraq2012-02-061-0/+3
* implemented/fixed #92Araq2012-01-291-0/+32
* sysasserts leaner againAraq2012-01-291-7/+1
* fixed #96 as good as technically possible (debug frames are allocated on the ...Araq2012-01-291-4/+4
* removed conflict in system.nimAraq2012-01-281-0/+18
|\
| * Added asyncio module; irc, scgi and the ftpclient modules work with it. Added...dom962012-01-221-0/+18
* | pragma on/off improvements; endb rewrittenAraq2012-01-281-11/+29
|/
* pragma blocks; fixed line information issue with user defined assertionsAraq2012-01-171-5/+13
* even more sys assertionsAraq2012-01-131-4/+4
* more sysasserts for allocator/gcAraq2012-01-121-1/+1
* removed '^ deprecated' messageAraq2012-01-101-1/+1
* bugfix: debugger works againAraq2012-01-081-1/+1
* unsuccessful phantom bug huntingAraq2012-01-081-24/+26
* C sources regenerated for new len(openarray) header that catches more bugs; s...Araq2012-01-031-5/+2
* year 2012 for most copyright headersAraq2012-01-021-2/+2
* new len(openarray) implementationAraq2011-12-311-1/+4
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-12-311-3/+6
|\
| * Merge pull request #79 from Tass/masterAraq2011-12-311-3/+6
| |\
| | * fixes for readAllSimon Hafner2011-12-301-2/+2
| | * implemented readAll()Simon Hafner2011-12-221-3/+6
* | | make trecinca|b tests greenAraq2011-12-311-1/+1
|/ /
* / GC: use simple balanced tree instead of AVL treeAraq2011-12-301-1/+5
|/
* codegen uses alias analysis to generate better codeAraq2011-12-101-2/+12
19-05-05 00:10:26 +0200 docs: minor subjective improvement' href='/ahoang/Nim/commit/doc/nims.rst?h=devel&id=9348636cbab8f6ae2ae30345ab009b09f68098b9'>9348636cb ^
9ffed0de3 ^







70f5d7fc4 ^

bb9b60604 ^




































































































































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