summary refs log tree commit diff stats
path: root/compiler/sigmatch.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #2220; #2219; breaks #2022; for #2022 callsite needs to be usedAraq2015-03-101-39/+87
* fixes #1940; code breakage! stricter template evaluationAraq2015-03-071-1/+1
* fixes #2229Araq2015-03-051-145/+134
* some love for the testsuite; fixed regressionsAraq2015-03-011-2/+4
* fixes #2169Araq2015-02-281-2/+2
* added a commentAraq2015-02-261-2/+2
* fixes #2216Araq2015-02-261-2/+14
* tsigtypeop.nim works againAraq2015-02-251-2/+1
* fixes #2125Araq2015-02-181-6/+14
* Fix a few more warningsdef2015-02-171-1/+1
* Fix typosFederico Ceratto2015-02-151-8/+8
* fixes endless recursion with static type parametersAraq2015-02-141-2/+10
* Aporia compiles again (disabling thread analysis is horrible!)Araq2015-02-121-1/+2
* ordinary parameters can follow a varargs parameterAraq2015-02-121-8/+14
* cleaned up some testsAraq2015-02-101-1/+1
* fixes #1988Araq2015-01-311-5/+7
* revert to old behaviour: tuple field names are not ignored anymore; fixes #1920Araq2015-01-181-1/+1
* fixes the integer conversion regressionsAraq2015-01-131-15/+16
* Merge pull request #1841 from skyfex/develAndreas Rumpf2015-01-121-13/+13
|\
| * Added safe implicit conversion of uint8 to int16..int64, uint16 to int32..int...Audun Wilhelmsen2015-01-031-13/+13
* | fix #1859Zahary Karadjov2015-01-051-8/+13
* | support for static params in the user defined type classesZahary Karadjov2015-01-021-8/+26
* | fix #1820Zahary Karadjov2015-01-021-1/+1
* | fix #1049Zahary Karadjov2015-01-021-21/+26
* | fix #544Zahary Karadjov2015-01-021-1/+2
* | fix #419Zahary Karadjov2015-01-021-2/+5
|/
* bugfix: don't treat generic types with different static params as the same typeZahary Karadjov2014-12-311-0/+3
* fix #1789 (binding to static params during generic proc sigmatch)Zahary Karadjov2014-12-311-7/+21
* release of 0.10.2Araq2014-12-291-0/+5
* fixes #1120Araq2014-12-251-2/+2
* tuple field names are ignoredAraq2014-12-231-1/+1
* fixes #1684Araq2014-11-301-0/+4
* fixes #836Araq2014-11-191-0/+3
* fixes #940Araq2014-11-171-1/+1
* nicer error messages (untested)Araq2014-10-261-9/+11
* nimfix now in its own directory; single file mode now the defaultAraq2014-10-051-1/+1
* deepCopy is instantiated when its corresponding type is instantiatedAraq2014-09-261-0/+12
* improvements for nimfixAraq2014-09-101-1/+3
* added nimfix toolAraq2014-09-051-0/+3
* updated the compiler to use the new symbol namesAraq2014-08-281-1/+1
* Nimrod renamed to NimAraq2014-08-281-1/+1
* fixes #1285Araq2014-06-301-3/+3
* Renamed considerAccents to considerQuotedIdentClay Sweetser2014-05-261-3/+3
* Renamed 'considerAcc' to 'considerAccents' for clarityClay Sweetser2014-05-241-3/+3
* fixes OR for int8|int16 etcAraq2014-04-201-2/+2
* actors compile againAraq2014-04-201-0/+3
* New concurrency model: next stepsAraq2014-04-191-1/+1
* first version of 'spawn'Araq2014-04-161-0/+1
* refined and documented regionized pointersAraq2014-04-091-17/+11
* implemented region pointersAraq2014-04-091-4/+9
a> 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675