summary refs log tree commit diff stats
path: root/compiler/procfind.nim
Commit message (Collapse)AuthorAgeFilesLines
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-11/+11
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* Fix #1561Varriount2014-10-291-1/+7
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into bigbreakAraq2014-10-041-2/+9
|\ | | | | | | | | | | | | Conflicts: lib/impure/db_postgres.nim lib/pure/os.nim lib/wrappers/postgres.nim
| * Fixes #1529Clay Sweetser2014-10-011-2/+9
| |
* | Nimrod renamed to NimAraq2014-08-281-1/+1
|/
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
|
* proc redefinition search based on the type system instead of on sloppy AST ↵Zahary Karadjov2013-12-301-1/+25
| | | | | | | | | | matching This will work the same for procs/templates/macros/etc, having arbitrary mix of implicit and explicit generics (as long as the symbols are equivalent for the purposes of overload resolution, they will be detected as redefinitions) fixes tgeneric
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/ccgutils.nim compiler/msgs.nim compiler/sem.nim compiler/semexprs.nim compiler/seminst.nim compiler/semmagic.nim compiler/semstmts.nim compiler/semtypes.nim compiler/semtypinst.nim compiler/sigmatch.nim compiler/types.nim compiler/vmgen.nim lib/core/macros.nim lib/system.nim tests/reject/tenummix.nim web/news.txt
| * towards support for composite type classes such as seq[Number] and ↵Zahary Karadjov2013-12-271-1/+1
| | | | | | | | SquareMatrix[T]
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-3/+3
| |
* | case consistency part 4Araq2013-12-271-5/+5
| |
* | case consistency part 1Araq2013-12-271-5/+5
|/
* merged the persistent scopes work with the delayed proc compilation strategyZahary Karadjov2013-05-121-2/+3
|\
| * added a ``noforward`` pragma that enables a new compilation strategyZahary Karadjov2013-05-111-1/+2
| | | | | | | | not requiring forward declarations on a per-module basis
* | final fixes giving us a working compilerZahary Karadjov2013-05-121-8/+8
|/
* fixes #304Araq2013-03-181-25/+34
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* implemented AST based overloadingAraq2012-12-061-2/+2
|
* improved support for typedesc valuesZahary Karadjov2012-09-251-1/+2
| | | | | * can be stored in constants and variables (including in containers like sequences) * can be passed to and returned from macros
* borrow works with genericsAraq2012-08-061-41/+29
|
* make idetools output full pathsAraq2012-08-051-0/+7
|
* made compiler more robust for idetools supportAraq2012-07-301-0/+2
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* compilation cache: various bugfixes; works for the compiler itselfAraq2011-10-271-7/+8
|
* big repo cleanupAraq2011-04-121-0/+83
542'>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 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752