summary refs log tree commit diff stats
path: root/compiler/sigmatch.nim
Commit message (Expand)AuthorAgeFilesLines
...
* implicit generics types as return types. removed the error message for captur...Zahary Karadjov2012-04-211-21/+10
* typedesc and expr paramsZahary Karadjov2012-03-311-14/+65
* generic types can be used like type classes. distinct can be applied to type ...Zahary Karadjov2012-03-251-5/+12
* tyOrdinal now means "integral types". tyTypeClass created to take care of typ...Zahary Karadjov2012-03-221-5/+4
* expr params implemented for procs; paving the way for type classesZahary Karadjov2012-03-221-18/+12
* allowing definitions of procs and templates to be overridden in local scopesZahary Karadjov2012-03-141-1/+6
* bootstraps fine with overloadable templatesZahary Karadjov2012-03-141-24/+30
* closure implementation: first stepsAraq2012-02-041-2/+8
* further steps to eliminate generics bugsAraq2012-01-111-12/+19
* bugfix: type alias to generic; generic type not stripped away from for loop v...Araq2012-01-071-9/+15
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* make trecinca|b tests greenAraq2011-12-311-1/+2
* path canonicalization and proper project relative pathsZahary Karadjov2011-12-091-1/+1
* 'assert' is now implemented without compiler magicAraq2011-12-041-1/+1
* bugfix: s[1..n] = @[] produced wrong C codeAraq2011-11-141-4/+12
* fixes #2Araq2011-11-021-1/+3
* compilation cache: various bugfixes; works for the compiler itselfAraq2011-10-271-7/+7
* compilation cache: mostly working; generics not yetAraq2011-10-251-2/+2
* bugfix: overloading resolution for typeofAraq2011-09-271-1/+1
* bugfixes for generics; new threads implementation still brokenAraq2011-09-201-5/+8
* finally got rid of nkPassAsOpenArrayAraq2011-08-161-2/+2
* fixes #35, fixes #43Araq2011-08-081-1/+2
* support for C++ code generation; importcpp and importobjc pragmasAraq2011-08-071-13/+11
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-0/+3
* got rid of unsound co/contravariance in procvarsAraq2011-06-171-33/+34
* intsets are now a proper module and part of the stdlibAraq2011-06-141-8/+6
* deprecated system.copy: use system.substr insteadAraq2011-05-141-2/+2
* got rid of isLiftedAraq2011-05-141-7/+0
* got rid of some arcane module namesAraq2011-04-211-1/+1
* big repo cleanupAraq2011-04-121-0/+714
k Agaram <vc@akkartik.com> 2018-10-17 07:08:47 -0700 4709' href='/akkartik/mu/commit/html/subx/021byte_addressing.cc.html?h=hlt&id=104e521c04d1a0cad9c68fb11e250e12ad8917ef'>104e521c ^
9c1056f5 ^
4c37b3e9 ^
104e521c ^

c504ca56 ^
104e521c ^

4c37b3e9 ^
c504ca56 ^
104e521c ^





c504ca56 ^
104e521c ^
9c1056f5 ^

c504ca56 ^


52daf072 ^
9c1056f5 ^


52daf072 ^
9c1056f5 ^

8aeb85f0 ^
9c1056f5 ^
c504ca56 ^
9c1056f5 ^

c504ca56 ^
9c1056f5 ^



c504ca56 ^
9c1056f5 ^





c504ca56 ^
9c1056f5 ^





c504ca56 ^
9c1056f5 ^


c504ca56 ^


52daf072 ^
9c1056f5 ^


52daf072 ^
9c1056f5 ^

8aeb85f0 ^
9c1056f5 ^
c504ca56 ^
9c1056f5 ^

c504ca56 ^
9c1056f5 ^




c504ca56 ^
9c1056f5 ^




c504ca56 ^
9c1056f5 ^

c504ca56 ^
9c1056f5 ^




c504ca56 ^


52daf072 ^
9c1056f5 ^



8aeb85f0 ^
9c1056f5 ^




c504ca56 ^
9c1056f5 ^
db8a9ab5 ^
9c1056f5 ^


c504ca56 ^
9c1056f5 ^


c504ca56 ^

52daf072 ^
9c1056f5 ^


52daf072 ^
9c1056f5 ^

8aeb85f0 ^
9c1056f5 ^
c504ca56 ^
9c1056f5 ^

c504ca56 ^
9c1056f5 ^



c504ca56 ^

9c1056f5 ^
c504ca56 ^
9c1056f5 ^

c504ca56 ^
9c1056f5 ^




c504ca56 ^
9c1056f5 ^

104e521c ^



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