summary refs log tree commit diff stats
path: root/compiler/sigmatch.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #12964 (#13027)Andreas Rumpf2020-01-041-2/+2
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-213/+206
* remove unused importsnarimiran2019-11-061-3/+0
* [backport] fix #12528, fix #12525: incorrect generic type resolution for defa...Andreas Rumpf2019-10-281-7/+15
* refactoring: use the new strings and seqs when optSeqDestructors is activeAraq2019-10-201-5/+0
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-19/+19
* fixes #12020 (#12106)Andreas Rumpf2019-09-021-1/+1
* improvement for 'unused import' warningsAraq2019-09-021-0/+1
* weaking unsigned/signed indexing requirements in order to not break too much ...Araq2019-09-021-5/+5
* Fix int literals and range interaction (#11197)Oscar Nihlgård2019-08-311-9/+11
* Fix several float range issues (supersedes #11905) (#12067)Andreas Rumpf2019-08-271-3/+4
|\
| * Fix several float range issuesOscar Nihlgård2019-08-271-3/+4
* | Fix to int to biggest int (#12066)Arne Döring2019-08-271-1/+1
|/
* fixes 9195 (#12055)Andreas Rumpf2019-08-271-2/+6
* [refactoring] compiler: simplified markUsedAndreas Rumpf2019-08-081-3/+3
* fix crash on sigmatch (#11913)Timothee Cour2019-08-081-3/+3
* delete expensive call (#11909) [refactoring]Arne Döring2019-08-081-1/+1
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-5/+5
* Allow typeof(nil) as generic parameter (#11869)Oscar Nihlgård2019-08-031-2/+0
* fix #11812 (#11829)Arne Döring2019-07-271-1/+1
* Merge branch 'devel' into araq-detect-unused-importsAndreas Rumpf2019-07-181-33/+55
|\
| * [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-1/+1
| * [refactoring] don't use 'defer'Andreas Rumpf2019-07-171-13/+18
| * Merge pull request #11680 from timotheecour/pr_fix_sigmatch_errmsgAndreas Rumpf2019-07-171-20/+37
| |\
| | * fix #8305 #7808 #10285 #11061 + other bugs with type mismatch error msgsTimothee Cour2019-07-081-20/+37
* | | [feature] detect unused importsAraq2019-07-171-3/+3
|/ /
* | 'nim check' stability improvementsAraq2019-07-141-1/+2
* | fixes #11715 (#11721)Andreas Rumpf2019-07-131-1/+1
* | styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-2/+2
* | newruntime: 'owned distinct' is a valid construct (required by async)Araq2019-07-091-0/+1
|/
* newruntime for async (#11650)Andreas Rumpf2019-07-051-1/+5
* sigmatch: use boolean algebraAndreas Rumpf2019-06-021-1/+1
* fixes #11375 (#11376)Andreas Rumpf2019-06-021-9/+9
* fixes #11057 (#11345)Andreas Rumpf2019-05-281-0/+6
* fixes #11257Araq2019-05-241-4/+11
* fixes #8568 (#11303)Andreas Rumpf2019-05-221-4/+7
* fixes subtype relation regressionAraq2019-05-221-4/+20
* make bootstrapping work with older NimsAraq2019-05-221-2/+1
* fixes #11239Araq2019-05-221-52/+37
* fixes #6732 (#11255)Andreas Rumpf2019-05-151-1/+12
* rename tyExpr/tyStmt to tyUntyped/tyTyped (#11227)Arne Döring2019-05-111-11/+11
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-7/+7
* Fix varargs int32 (#11054)Arne Döring2019-04-181-5/+12
* sigmatch: ensure 'owned proc' works with system.isNilAraq2019-04-111-1/+1
* Tighten the conversion from tyRange to scalar types (#10495)LemonBoy2019-02-231-6/+7
* first steps in implementing 'owned' pointers; undocumented, do not useAndreas Rumpf2019-02-231-7/+23
* gc: destructors is beginning to work (#10483)Andreas Rumpf2019-01-291-0/+5
* Restrict ptr/ref to ptr/ref implicit conversion (#10411)LemonBoy2019-01-221-1/+1
* Fix subtype conversion w/ varargs arguments (#10402)LemonBoy2019-01-211-2/+3
* fixes #10075 [backport]Araq2019-01-131-2/+1
'>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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498