OLD | NEW |
| 1 2009-03-24: Version 1.1.2 |
| 2 |
| 3 Improved frame merge code generated by the code generator. |
| 4 |
| 5 Optimized String.prototype.replace. |
| 6 |
| 7 Implemented __defineGetter__ and __defineSetter__ for properties |
| 8 with integer keys on non-array objects. |
| 9 |
| 10 Improved debugger and profiler support. |
| 11 |
| 12 Fixed a number of portability issues to allow compilation for |
| 13 smaller ARM devices. |
| 14 |
| 15 Exposed object cloning through the API. |
| 16 |
| 17 Implemented hidden properties. This is used to expose an identity |
| 18 hash for objects through the API. |
| 19 |
| 20 Implemented restarting of regular expressions if their input |
| 21 string changes representation during preemption. |
| 22 |
| 23 Optimized the creation of nested object and array literals. |
| 24 |
| 25 Fixed a code generator bug that could cause assignments in loops |
| 26 to be ignored if using continue to break out of the loop (issue |
| 27 284). |
| 28 |
| 29 |
1 2009-03-12: Version 1.1.1 | 30 2009-03-12: Version 1.1.1 |
2 | 31 |
3 Fixed an assertion in the new compiler to take stack overflow | 32 Fixed an assertion in the new compiler to take stack overflow |
4 exceptions into account. | 33 exceptions into account. |
5 | 34 |
6 Removed exception propagation code that could cause crashes. | 35 Removed exception propagation code that could cause crashes. |
7 | 36 |
8 Fixed minor bug in debugger line number computations. | 37 Fixed minor bug in debugger line number computations. |
9 | 38 |
10 8-byte align the C stack on Linux and Windows to speed up floating | 39 8-byte align the C stack on Linux and Windows to speed up floating |
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 | 708 |
680 Improved debugger support by allowing nested break points and by | 709 Improved debugger support by allowing nested break points and by |
681 dealing with stack-overflows when compiling functions before | 710 dealing with stack-overflows when compiling functions before |
682 setting break points in them. | 711 setting break points in them. |
683 | 712 |
684 | 713 |
685 2008-07-03: Version 0.1.0 | 714 2008-07-03: Version 0.1.0 |
686 | 715 |
687 Initial export. | 716 Initial export. |
688 | 717 |
OLD | NEW |