summary refs log tree commit diff stats
path: root/compiler/semdata.nim
Commit message (Expand)AuthorAgeFilesLines
...
* recursive modules are only detected to improve error messagesAndreas Rumpf2016-11-241-0/+1
* new dependency tracking for nimsuggestAraq2016-11-051-3/+6
* big refactoring: step 1Araq2016-10-311-30/+16
* generic multi-methods should work nowAndreas Rumpf2016-07-281-1/+1
* new language feature: explicit 'import system' statements are allowedAndreas Rumpf2016-07-071-0/+1
* Merge branch 'patch/fix-3496-generic-tmpl-args' of https://github.com/nanoant...Andreas Rumpf2016-05-291-1/+1
|\
| * fixes #3496Adam Strzelecki2015-10-291-1/+1
* | fixes #4227Andreas Rumpf2016-05-271-1/+1
* | added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-0/+3
* | added experimental .this pragmaAndreas Rumpf2016-02-281-11/+2
* | first implementation of the new lambda-lifting pass; barely anything worksAndreas Rumpf2015-12-261-1/+1
|/
* renamed inCompilesContext to compilesContextId; added test case for #3313Araq2015-09-181-1/+1
* fixes #3313Araq2015-09-181-0/+1
* next steps in binding [] properlyAraq2015-09-131-1/+2
* fixes #2585Araq2015-04-221-4/+6
* fixes #2505, fixes #1853, fixes #2522Araq2015-04-201-0/+3
* fixes #2481Araq2015-04-101-1/+2
* first implementation of overloading of '='; missing: rewriting let/var sectionsAraq2015-04-061-2/+7
* implemented a[^1] notationAraq2015-03-261-27/+28
* cleaned up some testsAraq2015-02-101-0/+1
* nimsuggest improvementsAraq2015-01-301-0/+3
* fixes #1915Araq2015-01-121-0/+1
* fix #1049Zahary Karadjov2015-01-021-1/+1
* implemented 'experimental' switchAraq2014-12-051-0/+5
* nicer error messages (untested)Araq2014-10-261-2/+1
* deepCopy is instantiated when its corresponding type is instantiatedAraq2014-09-261-0/+3
* updated the compiler to use the new symbol namesAraq2014-08-281-3/+3
* Nimrod renamed to NimAraq2014-08-281-1/+1
* Merge pull request #1281 from Araq/new_spawnAndreas Rumpf2014-06-161-0/+1
|\
| * pi test compiles, but crashes randomlyAraq2014-06-011-0/+1
* | Fixed #1172 (for real)Clay Sweetser2014-06-011-2/+2
|/
* removed flawed thread analysis passAraq2014-04-201-2/+0
* propagate semExpr flags in macro/template expansionZahary Karadjov2014-04-061-1/+1
* fixed parens around getSysType argumentsJimmie Houchin2014-03-251-1/+1
* reference implementation of a vector swizzle libraryZahary Karadjov2014-03-201-0/+21
* fix #715 againZahary Karadjov2014-03-161-1/+1
* fix tsemistaticZahary Karadjov2014-03-111-0/+3
* split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-1/+1
* quite messy implementation of generic lambdas, needs reworking; fixes #715Zahary Karadjov2014-02-171-0/+1
* fix some regressions caused by tyTypeDesc[tyNone]Zahary Karadjov2014-02-151-1/+0
* fixes #797; generic procs can be used in places expecting matching concrete p...Zahary Karadjov2014-02-111-0/+2
* tyTypeDesc and tyRange always have 1 child; this might be tyNone but it is re...Araq2014-02-051-0/+1
* fixes #844Araq2014-02-021-1/+1
* progress towards fixing tgenericshardcasesZahary Karadjov2014-01-061-5/+10
* introduce tyFromExpr; fixes #618Zahary Karadjov2014-01-041-0/+4
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-1/+19
|\
| * integrate the logic of fixupProcType into ReplaceTypeVarsZahary Karadjov2013-12-291-8/+6
| * better integration of tyStatic into typeRelZahary Karadjov2013-12-251-0/+5
| * wip type class reforms (the compiler bootstraps fine)Zahary Karadjov2013-12-251-0/+15
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-2/+2
'Blame the previous revision' href='/akkartik/mu/blame/cpp/050scenario?h=hlt&id=ec961781d0dd952384d08639b74f4b5a14942259'>^
b39ceb27 ^

e38c85a1 ^

ad8e984f ^

ad8e984f ^

e38c85a1 ^



6a1fdc95 ^
ccd792da ^
6a1fdc95 ^























ccd792da ^







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