OLD | NEW |
| 1 2009-05-11: Version 1.2.3 |
| 2 |
| 3 Fixed bug in reporting of out-of-memory situations. |
| 4 |
| 5 Introduce hidden prototypes on certain builtin prototype objects |
| 6 such as String.prototype to emulate JSC's behavior of restoring |
| 7 the original function when deleting functions from those prototype |
| 8 objects. |
| 9 |
| 10 Fixed crash bug in the register allocator. |
| 11 |
| 12 |
1 2009-05-04: Version 1.2.2 | 13 2009-05-04: Version 1.2.2 |
2 | 14 |
3 Fixed bug in array sorting for sparse arrays (issue 326). | 15 Fixed bug in array sorting for sparse arrays (issue 326). |
4 | 16 |
5 Added support for adding a soname when building a shared library | 17 Added support for adding a soname when building a shared library |
6 on Linux (issue 151). | 18 on Linux (issue 151). |
7 | 19 |
8 Fixed bug caused by morphing internal ASCII strings to external | 20 Fixed bug caused by morphing internal ASCII strings to external |
9 two-byte strings. Slices over ASCII strings have to forward ASCII | 21 two-byte strings. Slices over ASCII strings have to forward ASCII |
10 checks to the underlying buffer string. | 22 checks to the underlying buffer string. |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 | 865 |
854 Improved debugger support by allowing nested break points and by | 866 Improved debugger support by allowing nested break points and by |
855 dealing with stack-overflows when compiling functions before | 867 dealing with stack-overflows when compiling functions before |
856 setting break points in them. | 868 setting break points in them. |
857 | 869 |
858 | 870 |
859 2008-07-03: Version 0.1.0 | 871 2008-07-03: Version 0.1.0 |
860 | 872 |
861 Initial export. | 873 Initial export. |
862 | 874 |
OLD | NEW |