OLD | NEW |
| 1 2010-02-03: Version 2.1.0 |
| 2 |
| 3 Values are now always wrapped in objects when used as a receiver. |
| 4 (issue 223). |
| 5 |
| 6 [ES5] Implemented Object.getOwnPropertyNames. |
| 7 |
| 8 [ES5] Restrict JSON.parse to only accept strings that conforms to the |
| 9 JSON grammar. |
| 10 |
| 11 Improvement of debugger agent (issue 549 and 554). |
| 12 |
| 13 Fixed problem with skipped stack frame in profiles (issue 553). |
| 14 |
| 15 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl |
| 16 <ry@tinyclouds.org>. |
| 17 |
| 18 Fix a bug that Math.round() returns incorrect results for huge |
| 19 integers. |
| 20 |
| 21 Fix enumeration order for objects created from some constructor |
| 22 functions (isue http://crbug.com/3867). |
| 23 |
| 24 Fix arithmetic on some integer constants (issue 580). |
| 25 |
| 26 Numerous performance improvements including porting of previous IA-32 |
| 27 optimizations to x64 and ARM architectures. |
| 28 |
| 29 |
1 2010-01-14: Version 2.0.6 | 30 2010-01-14: Version 2.0.6 |
2 | 31 |
3 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor, | 32 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor, |
4 GetOwnProperty, FromPropertyDescriptor. | 33 GetOwnProperty, FromPropertyDescriptor. |
5 | 34 |
6 Fixed Mac x64 build errors. | 35 Fixed Mac x64 build errors. |
7 | 36 |
8 Improved performance of some math and string operations. | 37 Improved performance of some math and string operations. |
9 | 38 |
10 Improved performance of some regexp operations. | 39 Improved performance of some regexp operations. |
(...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1470 | 1499 |
1471 Improved debugger support by allowing nested break points and by | 1500 Improved debugger support by allowing nested break points and by |
1472 dealing with stack-overflows when compiling functions before | 1501 dealing with stack-overflows when compiling functions before |
1473 setting break points in them. | 1502 setting break points in them. |
1474 | 1503 |
1475 | 1504 |
1476 2008-07-03: Version 0.1.0 | 1505 2008-07-03: Version 0.1.0 |
1477 | 1506 |
1478 Initial export. | 1507 Initial export. |
1479 | 1508 |
OLD | NEW |