| OLD | NEW |
| 1 2008-10-23: Version 0.4.0 |
| 2 |
| 3 Split the global object into two parts: The state holding global |
| 4 object and the global object proxy. |
| 5 |
| 6 Fixed bug that affected the value of an assignment to an element |
| 7 in certain cases (issue 116). |
| 8 |
| 9 Added GetPropertyNames functionality (issue 33) and extra Date |
| 10 functions (issue 77) to the API. |
| 11 |
| 12 Changed WeakReferenceCallback to take a Persistent<Value> instead |
| 13 of a Persistent<Object> (issue 101). |
| 14 |
| 15 Fixed issues with message reporting for exceptions in try-finally |
| 16 blocks (issues 73 and 75). |
| 17 |
| 18 Optimized flattening of strings and string equality checking. |
| 19 |
| 20 Improved Boyer-Moore implementation for faster indexOf operations. |
| 21 |
| 22 Added development shell (d8) which includes counters and |
| 23 completion support. |
| 24 |
| 25 Fixed problem with the receiver passed to functions called from |
| 26 eval (issue 124). |
| 27 |
| 28 |
| 1 2008-10-16: Version 0.3.5 | 29 2008-10-16: Version 0.3.5 |
| 2 | 30 |
| 3 Improved string hash-code distribution by excluding bit-field bits | 31 Improved string hash-code distribution by excluding bit-field bits |
| 4 from the hash-code. | 32 from the hash-code. |
| 5 | 33 |
| 6 Changed string search algorithm used in indexOf from KMP to | 34 Changed string search algorithm used in indexOf from KMP to |
| 7 Boyer-Moore. | 35 Boyer-Moore. |
| 8 | 36 |
| 9 Improved the generated code for the instanceof operator. | 37 Improved the generated code for the instanceof operator. |
| 10 | 38 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 | 394 |
| 367 Improved debugger support by allowing nested break points and by | 395 Improved debugger support by allowing nested break points and by |
| 368 dealing with stack-overflows when compiling functions before | 396 dealing with stack-overflows when compiling functions before |
| 369 setting break points in them. | 397 setting break points in them. |
| 370 | 398 |
| 371 | 399 |
| 372 2008-07-03: Version 0.1.0 | 400 2008-07-03: Version 0.1.0 |
| 373 | 401 |
| 374 Initial export. | 402 Initial export. |
| 375 | 403 |
| OLD | NEW |