summary refs log tree commit diff stats
path: root/compiler/parampatterns.nim
Commit message (Expand)AuthorAgeFilesLines
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-1/+1
* fixes #10942. Lent T bug (#10946)cooldome2019-04-031-5/+12
* fixes #7524Araq2019-01-141-8/+7
* Allow taking address of skForVar variables (#8632)LemonBoy2018-08-141-1/+1
* guards.nim does compileAndreas Rumpf2018-05-111-26/+27
* refactoring: make FileIndex a distinct type; make line information an uint16;...Andreas Rumpf2018-04-211-1/+2
* make tests green againAndreas Rumpf2018-03-241-3/+8
* fixes the 'var T' checkingAndreas Rumpf2018-03-241-5/+2
* more checking for 'var T' as return type; refs #7373Andreas Rumpf2018-03-241-1/+29
* basic 'lent T' test worksAndreas Rumpf2018-01-211-1/+4
* deprecated unary '<'Andreas Rumpf2017-10-291-3/+3
* support the full range of type modifiers when declaring concept vars and test...Zahary Karadjov2017-03-241-0/+7
* fixes #4608Andreas Rumpf2016-10-181-0/+2
* some progress on #3832Andreas Rumpf2016-02-081-0/+3
* preparations for better handling of 'a[i]' in generics; stmt lists can be lva...Araq2015-09-121-1/+4
* added system.unsafeAddrAraq2015-08-041-9/+11
* fix #2585 properlyAraq2015-04-221-1/+3
* fixes #2585Araq2015-04-221-1/+1
* implemented a[^1] notationAraq2015-03-261-3/+4
* fixes #2346Araq2015-03-161-2/+6
* fixes #1809; implements overloading based on 'var T'Araq2015-03-141-19/+22
* nimsuggest improvementsAraq2015-01-301-1/+1
* Nimrod renamed to NimAraq2014-08-281-1/+1
* implemented builtin noncopying sliceAraq2014-05-021-1/+4
* case consistency improvementsAraq2014-01-111-1/+1
* case consistency: next stepsAraq2013-12-291-4/+4
* case consistency part 4Araq2013-12-271-2/+2
* implemented large parts of the 'not nil' checkingAraq2013-06-091-0/+2
* make some tests greenAraq2013-03-031-4/+7
* constraint now part of the parameter symbol and not of the typeAraq2012-12-051-2/+2
* term rewriting improvementsAraq2012-09-081-3/+56
* activated tests for tr macrosAraq2012-09-061-3/+4
* bugfixes and improvements for term rewriting macrosAraq2012-09-041-1/+1
* term rewriting macros fully implemented; still buggyAraq2012-09-031-0/+205
v class='alt'>
9c99973ff ^






5641be51c ^




































d9c73b49d ^
c39e20297 ^



d9c73b49d ^

f7f87a770 ^
d9c73b49d ^
7e351fc7f ^




5641be51c ^





e5281f935 ^
5641be51c ^
142e849b9 ^


5641be51c ^
559a7615a ^





e25474154 ^
5641be51c ^

e25474154 ^
2cdfe35e7 ^
130605567 ^
e5281f935 ^
7edc8bfe1 ^
e25474154 ^
5641be51c ^

e25474154 ^
5641be51c ^
5e5e4abfe ^
e25474154 ^
5e5e4abfe ^
e25474154 ^

5641be51c ^


2cdfe35e7 ^
5641be51c ^
130605567 ^
5641be51c ^




70c417610 ^
5641be51c ^
13389eab9 ^
5641be51c ^
e5281f935 ^
66ff1792f ^
1492ff33c ^
fed1b0a07 ^

673f5f353 ^
7edc8bfe1 ^

e25474154 ^
a4e2b0c15 ^









e25474154 ^

f56816def ^
a4e2b0c15 ^

a4e2b0c15 ^





cc28eef38 ^
5641be51c ^
e25474154 ^


70fb3a93e ^



a4e2b0c15 ^
cc28eef38 ^
5641be51c ^
e25474154 ^


70fb3a93e ^



a4e2b0c15 ^
af0c497f5 ^


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