| OLD | NEW |
| 1 2009-10-07: Version 1.3.14 | 1 2009-10-07: Version 1.3.14 |
| 2 | 2 |
| 3 Added GetRealNamedProperty to the API to lookup real properties | 3 Added GetRealNamedProperty to the API to lookup real properties |
| 4 located on the object or in the prototype chain skipping any | 4 located on the object or in the prototype chain skipping any |
| 5 interceptors. | 5 interceptors. |
| 6 | 6 |
| 7 Fix the stack limits setting API to work correctly with threads. The | 7 Fix the stack limits setting API to work correctly with threads. The |
| 8 stack limit now needs to be set to each thread thich is used with V8. | 8 stack limit now needs to be set to each thread thich is used with V8. |
| 9 | 9 |
| 10 Remove the high-priority flag from IdleNotification() | 10 Remove the high-priority flag from IdleNotification() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 Follow the spec in disallowing function declarations without a name. | 34 Follow the spec in disallowing function declarations without a name. |
| 35 | 35 |
| 36 Always allocate code objects within a 2 GB range. On x64 architecture | 36 Always allocate code objects within a 2 GB range. On x64 architecture |
| 37 this is used to use near calls (32-bit displacement) in Code objects. | 37 this is used to use near calls (32-bit displacement) in Code objects. |
| 38 | 38 |
| 39 Optimized array construction ported to x64 and ARM architectures. | 39 Optimized array construction ported to x64 and ARM architectures. |
| 40 | 40 |
| 41 [ES5] Changed Object.keys to return strings for element indices. | 41 [ES5] Changed Object.keys to return strings for element indices. |
| 42 | 42 |
| 43 |
| 43 2009-09-23: Version 1.3.13 | 44 2009-09-23: Version 1.3.13 |
| 44 | 45 |
| 45 Fixed uninitialized memory problem. | 46 Fixed uninitialized memory problem. |
| 46 | 47 |
| 47 Improved heap profiler support. | 48 Improved heap profiler support. |
| 48 | 49 |
| 49 | 50 |
| 50 2009-09-22: Version 1.3.12 | 51 2009-09-22: Version 1.3.12 |
| 51 | 52 |
| 52 Changed behavior of |function|.toString() on built-in functions to | 53 Changed behavior of |function|.toString() on built-in functions to |
| (...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 | 1312 |
| 1312 Improved debugger support by allowing nested break points and by | 1313 Improved debugger support by allowing nested break points and by |
| 1313 dealing with stack-overflows when compiling functions before | 1314 dealing with stack-overflows when compiling functions before |
| 1314 setting break points in them. | 1315 setting break points in them. |
| 1315 | 1316 |
| 1316 | 1317 |
| 1317 2008-07-03: Version 0.1.0 | 1318 2008-07-03: Version 0.1.0 |
| 1318 | 1319 |
| 1319 Initial export. | 1320 Initial export. |
| 1320 | 1321 |
| OLD | NEW |