| OLD | NEW |
| 1 2009-04-01: Version 1.1.5 |
| 2 |
| 3 Fixed bug that caused function literals to not be optimized as |
| 4 much as other functions. |
| 5 |
| 6 Improved profiler support. |
| 7 |
| 8 Fixed a crash bug in connection with debugger unloading. |
| 9 |
| 10 Fixed a crash bug in the code generator caused by loosing the |
| 11 information that a frame element was copied. |
| 12 |
| 13 Fixed an exception propagation bug that could cause non-null |
| 14 return values when exceptions were thrown. |
| 15 |
| 16 |
| 1 2009-03-30: Version 1.1.4 | 17 2009-03-30: Version 1.1.4 |
| 2 | 18 |
| 3 Optimized String.prototype.match. | 19 Optimized String.prototype.match. |
| 4 | 20 |
| 5 Improved the stack information in profiles. | 21 Improved the stack information in profiles. |
| 6 | 22 |
| 7 Fixed bug in ARM port making it possible to compile the runtime | 23 Fixed bug in ARM port making it possible to compile the runtime |
| 8 system for thumb mode again. | 24 system for thumb mode again. |
| 9 | 25 |
| 10 Implemented a number of optimizations in the code generator. | 26 Implemented a number of optimizations in the code generator. |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 | 749 |
| 734 Improved debugger support by allowing nested break points and by | 750 Improved debugger support by allowing nested break points and by |
| 735 dealing with stack-overflows when compiling functions before | 751 dealing with stack-overflows when compiling functions before |
| 736 setting break points in them. | 752 setting break points in them. |
| 737 | 753 |
| 738 | 754 |
| 739 2008-07-03: Version 0.1.0 | 755 2008-07-03: Version 0.1.0 |
| 740 | 756 |
| 741 Initial export. | 757 Initial export. |
| 742 | 758 |
| OLD | NEW |