| OLD | NEW |
| 1 2008-12-11: Version 0.4.6 |
| 2 |
| 3 Fixed exception reporting bug where certain exceptions were |
| 4 incorrectly reported as uncaught. |
| 5 |
| 6 Improved the memory allocation strategy used during compilation to |
| 7 make running out of memory when compiling huge scripts less |
| 8 likely. |
| 9 |
| 10 Optimized String.replace by avoiding the construction of certain |
| 11 sub strings. |
| 12 |
| 13 Fixed bug in code generation for large switch statements on ARM. |
| 14 |
| 15 Fixed bug that caused V8 to change the global object template |
| 16 passed in by the user. |
| 17 |
| 18 Changed the API for creating object groups used during garbage |
| 19 collection. Entire object groups are now passed to V8 instead of |
| 20 individual members of the groups. |
| 21 |
| 22 |
| 1 2008-12-03: Version 0.4.5 | 23 2008-12-03: Version 0.4.5 |
| 2 | 24 |
| 3 Added experimental API support for allocating V8 symbols as | 25 Added experimental API support for allocating V8 symbols as |
| 4 external strings. | 26 external strings. |
| 5 | 27 |
| 6 Fixed bugs in debugging support on ARM. | 28 Fixed bugs in debugging support on ARM. |
| 7 | 29 |
| 8 Changed eval implementation to correctly detect whether or not a | 30 Changed eval implementation to correctly detect whether or not a |
| 9 call to eval is aliased. | 31 call to eval is aliased. |
| 10 | 32 |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 | 526 |
| 505 Improved debugger support by allowing nested break points and by | 527 Improved debugger support by allowing nested break points and by |
| 506 dealing with stack-overflows when compiling functions before | 528 dealing with stack-overflows when compiling functions before |
| 507 setting break points in them. | 529 setting break points in them. |
| 508 | 530 |
| 509 | 531 |
| 510 2008-07-03: Version 0.1.0 | 532 2008-07-03: Version 0.1.0 |
| 511 | 533 |
| 512 Initial export. | 534 Initial export. |
| 513 | 535 |
| OLD | NEW |