summary refs log tree commit diff stats
path: root/compiler/semfold.nim
Commit message (Expand)AuthorAgeFilesLines
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-2/+2
* NimScript: added buildOS and buildCPU constantsAndreas Rumpf2017-09-221-0/+2
* fix #1082Zahary Karadjov2017-06-201-2/+4
* introduce a pre-processing pass for the concept bodiesZahary Karadjov2017-06-201-2/+5
* removed compiler internal list implementation (#5371)Arne Döring2017-02-221-1/+1
* fixes #5399Araq2017-02-161-1/+1
* make more tests greenAraq2017-02-161-1/+4
* fixes #5216Araq2017-01-271-5/+5
* fixes #3434Andreas Rumpf2017-01-191-1/+1
* Merge branch 'devel' into sighashesAraq2016-12-191-1/+1
|\
| * fixes nimsuggest issue #40Araq2016-12-181-1/+1
* | removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-1/+2
|/
* fixes a compiler crash; refs #4699Andreas Rumpf2016-09-031-1/+2
* remove unused stuffJacek Sieka2016-08-091-26/+0
* remove sfFakeConstJacek Sieka2016-07-301-1/+1
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-2/+2
* get rid of deprecated toLower/toUpperAndreas Rumpf2016-07-191-2/+2
* fixes #3545Andreas Rumpf2016-07-151-6/+7
* Add the ability to pass a value with the -d flagJeff Ciesielski2016-07-041-0/+6
* Modification to implementation of round() such that it returns a float and ac...A. S. Budden2016-05-311-1/+1
* fixes #4040Andreas Rumpf2016-05-111-1/+8
* fixes #2599Araq2015-09-131-8/+1
* fixes #3230Araq2015-09-091-1/+1
* Fixed nimvm in generics.Yuriy Glukhov2015-09-071-2/+0
* nimvm is magicYuriy Glukhov2015-09-041-0/+2
* fixes #3140Araq2015-08-031-8/+8
* fixes #3099Araq2015-07-211-1/+1
* fixes #1463Araq2015-07-011-1/+1
* fixes #2985Araq2015-06-251-0/+3
* Removed magics: mAbsI64rku2015-06-101-2/+2
* Removed magics: mBitnotI64rku2015-06-101-1/+1
* Removed magics: mEqI64 mLtI64 mLeI64rku2015-06-101-3/+3
* Removed magics: mShrI64, mShlI64, mBitandI64, mBitorI64, mBitxorI64rku2015-06-101-8/+8
* Removed magics: mAddI64, mSubI64, mMulI64, mDivI64, mModI64rku2015-06-101-10/+10
* fixes #2629, fixes #2641, fixes #2632, fixes #2630Araq2015-05-031-1/+1
* minor bugfixes to the new 'len(nil)==0' featureAraq2015-05-031-2/+5
* compiler\ccgexprs.nimAraq2015-05-031-1/+1
* fixes #2470, fixes #1354Araq2015-04-281-2/+3
* fixes #2589Araq2015-04-231-1/+1
* added '..^' and '..<' operators; 'nil' is allowed for 'len'; added plugin sys...Araq2015-04-221-2/+3
* fixes #2550Araq2015-04-221-9/+13
* fixes #2448Araq2015-04-101-4/+10
* disallow negative indexingAraq2015-03-271-133/+133
* Fixes #2030Simon Hafner2015-01-291-2/+2
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* fixes #1638Araq2014-12-171-3/+5
* implemented procCall builtinAraq2014-11-281-4/+0
* fixes #939Araq2014-11-201-4/+16
* fixes #916Araq2014-11-201-1/+1
* bugfix: 'T = ref T' is an illegal recursive typeAraq2014-10-021-0/+1
> 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