OLD | NEW |
| 1 2008-10-28: Version 0.4.1 |
| 2 |
| 3 Added caching of RegExp data in compilation cache. |
| 4 |
| 5 Added Visual Studio project file for d8 shell. |
| 6 |
| 7 Fixed function call performance regression introduced in version |
| 8 0.4.0 when splitting the global object in two parts (issue 120). |
| 9 |
| 10 Fixed issue 131 by checking for empty handles before throwing and |
| 11 reporting exceptions. |
| 12 |
| 13 |
1 2008-10-23: Version 0.4.0 | 14 2008-10-23: Version 0.4.0 |
2 | 15 |
3 Split the global object into two parts: The state holding global | 16 Split the global object into two parts: The state holding global |
4 object and the global object proxy. | 17 object and the global object proxy. |
5 | 18 |
6 Fixed bug that affected the value of an assignment to an element | 19 Fixed bug that affected the value of an assignment to an element |
7 in certain cases (issue 116). | 20 in certain cases (issue 116). |
8 | 21 |
9 Added GetPropertyNames functionality (issue 33) and extra Date | 22 Added GetPropertyNames functionality (issue 33) and extra Date |
10 functions (issue 77) to the API. | 23 functions (issue 77) to the API. |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 | 407 |
395 Improved debugger support by allowing nested break points and by | 408 Improved debugger support by allowing nested break points and by |
396 dealing with stack-overflows when compiling functions before | 409 dealing with stack-overflows when compiling functions before |
397 setting break points in them. | 410 setting break points in them. |
398 | 411 |
399 | 412 |
400 2008-07-03: Version 0.1.0 | 413 2008-07-03: Version 0.1.0 |
401 | 414 |
402 Initial export. | 415 Initial export. |
403 | 416 |
OLD | NEW |