OLD | NEW |
| 1 2008-11-04: Version 0.4.3 |
| 2 |
| 3 Added support for API accessors that prohibit overwriting by |
| 4 accessors defined in JavaScript code by using __defineGetter__ and |
| 5 __defineSetter__. |
| 6 |
| 7 Improved handling of conditionals in test status files. |
| 8 |
| 9 Introduced access control in propertyIsEnumerable. |
| 10 |
| 11 Improved performance of some string operations by caching |
| 12 information about the type of the string between operations. |
| 13 |
| 14 Fixed bug in fast-case code for switch statements that only have |
| 15 integer labels. |
| 16 |
| 17 |
1 2008-10-30: Version 0.4.2 | 18 2008-10-30: Version 0.4.2 |
2 | 19 |
3 Improved performance of Array.prototype.concat by moving the | 20 Improved performance of Array.prototype.concat by moving the |
4 implementation to C++ (issue 123). | 21 implementation to C++ (issue 123). |
5 | 22 |
6 Fixed heap growth policy to avoid growing old space to its maximum | 23 Fixed heap growth policy to avoid growing old space to its maximum |
7 capacity before doing a garbage collection and fixed issue that | 24 capacity before doing a garbage collection and fixed issue that |
8 would lead to artificial out of memory situations (issue 129). | 25 would lead to artificial out of memory situations (issue 129). |
9 | 26 |
10 Fixed Date.prototype.toLocaleDateString to return the date in the | 27 Fixed Date.prototype.toLocaleDateString to return the date in the |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 | 441 |
425 Improved debugger support by allowing nested break points and by | 442 Improved debugger support by allowing nested break points and by |
426 dealing with stack-overflows when compiling functions before | 443 dealing with stack-overflows when compiling functions before |
427 setting break points in them. | 444 setting break points in them. |
428 | 445 |
429 | 446 |
430 2008-07-03: Version 0.1.0 | 447 2008-07-03: Version 0.1.0 |
431 | 448 |
432 Initial export. | 449 Initial export. |
433 | 450 |
OLD | NEW |