summary refs log tree commit diff stats
path: root/compiler/semdata.nim
Commit message (Expand)AuthorAgeFilesLines
...
* added system.compilesAraq2012-07-201-1/+2
* preparations for making 'closure' the default calling convention for proc typesAraq2012-07-161-3/+3
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-4/+4
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-0/+5
* generate default destructorsZahary Karadjov2012-06-061-1/+5
* Added system.staticExec proc for executing external command at compile-timeZahary Karadjov2012-06-021-2/+0
* avoid duplicated variable names in unrolled loopsZahary Karadjov2012-04-151-0/+1
* typedesc and expr paramsZahary Karadjov2012-03-311-4/+6
* bootstraps fine with overloadable templatesZahary Karadjov2012-03-141-1/+1
* pragma on/off improvements; endb rewrittenAraq2012-01-281-0/+1
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-17/+17
* compilation cache: slurped files are a dependency tooAraq2011-10-301-0/+2
* eval context for macros lives as long as the current module is compiledAraq2011-10-281-1/+2
* compilation cache: mostly working; generics not yetAraq2011-10-251-6/+32
* bugfixes for ROD file generation; nimcache dir is now flatAraq2011-10-201-1/+0
* beginning of a taint mode; type system enhancementsAraq2011-09-241-1/+3
* bugfix: proper cache for generic instantiationsAraq2011-07-211-5/+7
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-2/+2
* intsets are now a proper module and part of the stdlibAraq2011-06-141-3/+4
* further improvements for thread analysisAraq2011-06-131-0/+2
* got rid of some arcane module namesAraq2011-04-211-3/+3
* big repo cleanupAraq2011-04-121-0/+187
a id='n27' href='#n27'>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