OLD | NEW |
| 1 2009-10-07: Version 1.3.14 |
| 2 |
| 3 Added GetRealNamedProperty to the API to lookup real properties |
| 4 located on the object or in the prototype chain skipping any |
| 5 interceptors. |
| 6 |
| 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. |
| 9 |
| 10 Remove the high-priority flag from IdleNotification() |
| 11 |
| 12 Ensure V8 is initialized before locking and unlocking threads. |
| 13 |
| 14 Implemented a new JavaScript minifier for compressing the source of |
| 15 the built-in JavaScript. This Remove non-Open Source code from Douglas |
| 16 Crockford from the project. |
| 17 |
| 18 Added a missing optimization in StringCharAt. |
| 19 |
| 20 Fixed some flaky socket tests. |
| 21 |
| 22 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD |
| 23 in 64-bit mode. |
| 24 |
| 25 Fixed memory leaks in the thread management code. |
| 26 |
| 27 Fixed the result of assignment to a pixel array. The assigned value |
| 28 is now the result. |
| 29 |
| 30 Error reporting for invalid left-hand sides in for-in statements, pre- |
| 31 and postfix count expressions, and assignments now matches the JSC |
| 32 behavior in Safari 4. |
| 33 |
| 34 Follow the spec in disallowing function declarations without a name. |
| 35 |
| 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. |
| 38 |
| 39 Optimized array construction ported to x64 and ARM architectures. |
| 40 |
| 41 [ES5] Changed Object.keys to return strings for element indices. |
| 42 |
1 2009-09-23: Version 1.3.13 | 43 2009-09-23: Version 1.3.13 |
2 | 44 |
3 Fixed uninitialized memory problem. | 45 Fixed uninitialized memory problem. |
4 | 46 |
5 Improved heap profiler support. | 47 Improved heap profiler support. |
6 | 48 |
7 | 49 |
8 2009-09-22: Version 1.3.12 | 50 2009-09-22: Version 1.3.12 |
9 | 51 |
10 Changed behavior of |function|.toString() on built-in functions to | 52 Changed behavior of |function|.toString() on built-in functions to |
(...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1269 | 1311 |
1270 Improved debugger support by allowing nested break points and by | 1312 Improved debugger support by allowing nested break points and by |
1271 dealing with stack-overflows when compiling functions before | 1313 dealing with stack-overflows when compiling functions before |
1272 setting break points in them. | 1314 setting break points in them. |
1273 | 1315 |
1274 | 1316 |
1275 2008-07-03: Version 0.1.0 | 1317 2008-07-03: Version 0.1.0 |
1276 | 1318 |
1277 Initial export. | 1319 Initial export. |
1278 | 1320 |
OLD | NEW |