summary refs log tree commit diff stats
path: root/lib/system/jssys.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #6753Andreas Rumpf2017-11-221-6/+6
* Fixed handling of surrogate pairs (#6332)Yuriy Glukhov2017-09-051-8/+17
* fixes #6096Araq2017-07-171-2/+2
* fixes #5986 js backend failed to compile try ... except new syntax (#6116)andri lim2017-07-171-1/+1
* JS codegen: make 'echo' use console.log unless you define -d:nimOldEchoAndreas Rumpf2017-06-281-1/+1
* JS codegen: produce better code for constant setsAndreas Rumpf2017-05-011-1/+1
* fixes #5599 (#5610)Andreas Rumpf2017-03-261-0/+4
* Store stack trace in exceptionYuriy Glukhov2016-09-041-0/+3
* Fixed getCurrentException and getCurrentExceptionMsg. Closes #4635Yuriy Glukhov2016-08-291-9/+23
* Reset framePtr on unhabdled exception. Dont reset on getStackTrace.Yuriy Glukhov2016-08-271-3/+1
* Uncaught exceptions in JS now always propagate with better stack trace.Yuriy Glukhov2016-08-271-29/+37
* prepare Nim codebase for upcoming parser changesAndreas Rumpf2016-07-151-1/+1
* Fix toJSStr for control charactersnigredo-tori2016-05-201-1/+5
* PHP codegen improvementsAndreas Rumpf2016-05-131-1/+4
* PHP codegen array constructor hack.Hans Raaf2016-05-111-5/+8
* JS target improvementsAndreas Rumpf2016-04-291-0/+2
* Fix for PHP mnewString()Hans Raaf2016-03-061-3/+1
* PHP codegen: use nimAt for PHP 5.3 compatibilityAndreas Rumpf2016-03-041-0/+6
* php-codegen fixesAndreas Rumpf2016-02-061-0/+5
* PHP codegen can generate PHP classesAndreas Rumpf2016-02-061-5/+5
* first version of an PHP codegenAndreas Rumpf2016-02-061-128/+271
* Fixed unicode strings in JSYuriy Glukhov2016-01-221-7/+38
* Revert "Fixed unicode handling in JS. Fixes #3714."Yuriy Glukhov2016-01-211-26/+7
* Merge pull request #3754 from yglukhov/js-unsignedAndreas Rumpf2016-01-211-36/+0
|\
| * Unsigned arith corrected for JSYuriy Glukhov2016-01-211-36/+0
* | Fixed unicode handling in JS. Fixes #3714.Yuriy Glukhov2016-01-181-7/+26
|/
* Fixed copying of nil seq in JSYuriy Glukhov2015-12-161-7/+12
* Removed Node, NodeType and Document definitions from jssys.Yuriy Glukhov2015-11-251-74/+20
* Fixed ret by var in jsYuriy Glukhov2015-10-151-3/+9
* Fixed JS copying.Yuriy Glukhov2015-08-311-9/+5
* Untyped pointers godegen changed. addr expression fixed.Yuriy Glukhov2015-08-211-9/+10
* Fixed fix of #2917yglukhov2015-06-171-2/+5
* Fixes #2917yglukhov2015-06-171-3/+16
* Added noUnhandledHandleryglukhov2015-06-151-7/+9
* Unhandled exceptions handling brought back.yglukhov2015-06-151-0/+24
* Fixed and slightly changed exception handling.yglukhov2015-06-151-25/+4
* Fixed copying of aggregates in JS.yglukhov2015-06-111-22/+30
* lib/system/g-w - Dropped 'T' from typespdw2015-06-041-33/+36
* Fixes #2323. Fixes #2148.Dominik Picheta2015-03-151-7/+11
* Fix typosFederico Ceratto2015-02-151-1/+1
* docgen should work againAraq2014-10-051-2/+3
* make tests greenAraq2014-08-311-13/+13
* the big renamefest: first stepsAraq2014-08-221-2/+2
* JS compilation works againAraq2014-07-161-2/+2
* parseBiggestFloat is now builtinAraq2014-07-161-0/+84
* Fixes problems with JS code gen.Dominik Picheta2014-04-111-20/+34
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-02-251-25/+24
|\
| * fix some trivial errors in the test suite and some more regressions caused by...Zahary Karadjov2014-02-181-29/+28
* | renamed noStackFrame to asmNoStackFrameAraq2014-02-181-34/+34
|/
* fix the error "only proc headers can feature pragmas" when compiling in JS modeZahary Karadjov2014-01-231-3/+3
593'>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 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789