summary refs log tree commit diff stats
path: root/compiler/cgmeth.nim
Commit message (Expand)AuthorAgeFilesLines
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* make tests green againAndreas Rumpf2018-05-181-1/+1
* remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-3/+3
* pragmas compiles againAndreas Rumpf2018-05-111-22/+23
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-1/+1
* Fixes #5946 (#6017)Yuriy Glukhov2017-06-261-2/+3
* fixes multiple nil-checks for methods (#5806)Parashurama2017-05-121-3/+6
* fixes #5599 (#5610)Andreas Rumpf2017-03-261-2/+8
* fixes #5432Araq2017-02-261-1/+2
* another attempt to make test green againAraq2017-02-241-2/+10
* fixes a multimethod regressionAndreas Rumpf2017-02-241-6/+9
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-24/+26
* removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-2/+2
* some progress on --symbolfiles:onAndreas Rumpf2016-11-021-2/+3
* tester cleanup; enable some rod testsAraq2016-08-271-2/+3
* generic multi-methods should work nowAndreas Rumpf2016-07-281-2/+2
* fixes #4428Andreas Rumpf2016-07-191-2/+8
* fix issue #3550trustable-code2015-12-241-4/+1
* better error handling for bug #3550Araq2015-11-181-2/+2
* fixes #3550Araq2015-11-181-1/+6
* fixes #3431, fixes #3370, fixes #3468Araq2015-10-251-3/+4
* Fixed ret by var in jsYuriy Glukhov2015-10-151-2/+1
* fixes #2590; methods now require a .base annotationAraq2015-09-061-9/+26
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-42/+42
* Merge branch 'devel' into bigbreakAraq2014-11-031-23/+64
|\
| * Fix dispatcher creation for method prototypes.Reimer Behrends2014-11-021-24/+64
| * Reset location when creating a method dispatcherReimer Behrends2014-11-011-0/+1
* | updated the compiler to use the new symbol namesAraq2014-08-281-3/+3
* | Nimrod renamed to NimAraq2014-08-281-1/+1
|/
* implemented region pointersAraq2014-04-091-2/+2
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
* case consistency part 4Araq2013-12-271-8/+8
* case consistency part 1Araq2013-12-271-3/+3
* fixes #332Araq2013-03-171-2/+2
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* implemented generic multi methodsAraq2013-01-161-10/+9
* next steps for exception trackingAraq2012-11-031-4/+7
* bugfix for methods (comment in #185)Araq2012-08-221-0/+3
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* lazy loading of body ast implementedAraq2011-10-301-2/+2
* compilation cache: multi methods now workAraq2011-10-241-4/+18
* compilation cache: small fixes; methods still not workingAraq2011-10-231-13/+15
* preparation for new 'is' operator; breaks bootstrapping again, sorry (use gen...Araq2011-07-311-1/+1
* intsets are now a proper module and part of the stdlibAraq2011-06-141-6/+5
* fixes #12Araq2011-05-021-58/+43
* got rid of some arcane module namesAraq2011-04-211-1/+1
* big repo cleanupAraq2011-04-121-0/+196
ef='#n520'>520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 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 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718