OLD | NEW |
| 1 2009-09-23: Version 1.3.13 |
| 2 |
| 3 Fixed uninitialized memory problem. |
| 4 |
| 5 Improved heap profiler support. |
| 6 |
| 7 |
1 2009-09-22: Version 1.3.12 | 8 2009-09-22: Version 1.3.12 |
2 | 9 |
3 Changed behavior of |function|.toString() on built-in functions to | 10 Changed behavior of |function|.toString() on built-in functions to |
4 be compatible with other implementations. Patch by Jan de Mooij. | 11 be compatible with other implementations. Patch by Jan de Mooij. |
5 | 12 |
6 Added Object::IsDirty in the API. | 13 Added Object::IsDirty in the API. |
7 | 14 |
8 Optimized array construction; it is now handled purely in native | 15 Optimized array construction; it is now handled purely in native |
9 code. | 16 code. |
10 | 17 |
11 [ES5] Made properties of the arguments array enumerable. | 18 [ES5] Made properties of the arguments array enumerable. |
12 | 19 |
13 [ES5] Added test suite adapter for the es5conform test suite. | 20 [ES5] Added test suite adapter for the es5conform test suite. |
14 | 21 |
15 [ES5] Added Object.keys function. | 22 [ES5] Added Object.keys function. |
16 | 23 |
| 24 |
17 2009-09-15: Version 1.3.11 | 25 2009-09-15: Version 1.3.11 |
18 | 26 |
19 Fixed crash in error reporting during bootstrapping. | 27 Fixed crash in error reporting during bootstrapping. |
20 | 28 |
21 Optimized generated IA32 math code by using SSE2 instructions when | 29 Optimized generated IA32 math code by using SSE2 instructions when |
22 available. | 30 available. |
23 | 31 |
24 Implemented missing pieces of debugger infrastructure on ARM. The | 32 Implemented missing pieces of debugger infrastructure on ARM. The |
25 debugger is now fully functional on ARM. | 33 debugger is now fully functional on ARM. |
26 | 34 |
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1261 | 1269 |
1262 Improved debugger support by allowing nested break points and by | 1270 Improved debugger support by allowing nested break points and by |
1263 dealing with stack-overflows when compiling functions before | 1271 dealing with stack-overflows when compiling functions before |
1264 setting break points in them. | 1272 setting break points in them. |
1265 | 1273 |
1266 | 1274 |
1267 2008-07-03: Version 0.1.0 | 1275 2008-07-03: Version 0.1.0 |
1268 | 1276 |
1269 Initial export. | 1277 Initial export. |
1270 | 1278 |
OLD | NEW |