summary refs log tree commit diff stats
path: root/compiler/semgnrc.nim
Commit message (Expand)AuthorAgeFilesLines
...
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-05-141-16/+16
|\
| * get rid of the SymTab* procs in astalgoZahary Karadjov2013-05-121-2/+2
| * switch to a linked list of scopesZahary Karadjov2013-05-111-14/+14
* | todo.txt changesAraq2013-05-111-5/+0
|/
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* bugfix: 'indexOf' for tuple fields worksAraq2013-03-111-5/+0
* fixes for the new overloading resolutionAraq2013-03-031-5/+10
* bugfix: threads should work again; fixes #220Araq2012-10-121-4/+5
* allow 'mixin' in genericsAraq2012-10-121-50/+69
* syntax compatibility between do blocks and stmt blocksZahary Karadjov2012-10-041-11/+2
* the `is` operator now works with type classes and type variablesZahary Karadjov2012-10-031-10/+10
* bugfix: allow tuple constructors in generic codeZahary Karadjov2012-10-031-0/+3
* fixes #194Araq2012-09-201-1/+8
* bugfix: 'defined/compiles' open an implicit mixin scope in genericsAraq2012-09-181-3/+6
* made tests green againAraq2012-09-181-5/+12
* stricter symbol lookup in genericsAraq2012-09-171-8/+10
* first steps for overloading support of passing blocks; bugfix: test results o...Araq2012-09-111-6/+29
* parameter passing works the same for macros and templates; use callsite magic...Araq2012-08-281-2/+2
* distinguish properly between nkOpen and nkClosedSymChoiceAraq2012-08-261-6/+7
* next steps to hygienic templatesAraq2012-08-201-1/+1
* first steps to make templates hygienicAraq2012-08-201-11/+11
* bugfix: bind context for genericsAraq2012-07-241-3/+3
* added system.||; lacks runtime supportAraq2012-05-231-1/+1
* experimental support for preserving local variable names in the generated codeZahary Karadjov2012-04-131-0/+2
* `do' keyword in the grammar for lambda blocksZahary Karadjov2012-02-101-2/+2
* bugfix: removed newSons legacyAraq2012-01-071-1/+2
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* bugfix: preliminary symbol declaration in first pass of genericsAraq2011-12-301-9/+11
* implemented 'let' statementAraq2011-11-291-1/+1
* small bugfixes to make more tests greenAraq2011-11-021-2/+4
* lazy loading of body ast implementedAraq2011-10-301-2/+3
* 'bind' as a declarative statementAraq2011-10-101-37/+46
* bugfixes for semantic checking; thread implementation pushed the compilerAraq2011-06-041-41/+53
* cleaned up the tests; fixes #30; fixes #26Araq2011-05-011-7/+2
* big repo cleanupAraq2011-04-121-0/+245
rtik Agaram <vc@akkartik.com> 2019-07-27 18:26:18 -0700 committer Kartik Agaram <vc@akkartik.com> 2019-07-27 18:26:18 -0700 5490' href='/akkartik/mu/commit/html/001help.cc.html?h=hlt&id=c8a3ccbeb89221d726542a89b42ddb26827af1f4'>c8a3ccbe ^
a654e4ec ^
204dae92 ^



d3a9db3a ^
204dae92 ^

d3a9db3a ^
6e1eeeeb ^






d3a9db3a ^
6e1eeeeb ^







d3a9db3a ^
6e1eeeeb ^






d3a9db3a ^

6e1eeeeb ^

















d3a9db3a ^
6e1eeeeb ^






d3a9db3a ^
2f899b3b ^





















d3a9db3a ^




















































2f899b3b ^
d3a9db3a ^
2f899b3b ^
d3a9db3a ^


2f899b3b ^
d3a9db3a ^







2f899b3b ^
d3a9db3a ^










































































2f899b3b ^
d3a9db3a ^




































2f899b3b ^
d3a9db3a ^


672e3e50 ^


a654e4ec ^
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
333
334