OLD | NEW |
| 1 2010-09-01: Version 2.4.0 |
| 2 |
| 3 Fix bug in Object.freeze and Object.seal when Array.prototype or |
| 4 Object.prototype is changed (issue 842). |
| 5 |
| 6 Update Array.splice to follow Safari and Firefox when called |
| 7 with zero arguments. |
| 8 |
| 9 Fix a missing live register when breaking at keyed loads on ARM. |
| 10 |
| 11 Performance improvements on all platforms. |
| 12 |
| 13 |
1 2010-08-25: Version 2.3.11 | 14 2010-08-25: Version 2.3.11 |
2 | 15 |
3 Fix bug in RegExp related to copy-on-write arrays. | 16 Fix bug in RegExp related to copy-on-write arrays. |
4 | 17 |
5 Refactoring of tools/test.py script, including the introduction of | 18 Refactoring of tools/test.py script, including the introduction of |
6 VARIANT_FLAGS that allows specification of sets of flags with which | 19 VARIANT_FLAGS that allows specification of sets of flags with which |
7 all tests should be run. | 20 all tests should be run. |
8 | 21 |
9 Fix a bug in the handling of debug breaks in CallIC. | 22 Fix a bug in the handling of debug breaks in CallIC. |
10 | 23 |
(...skipping 2010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2021 | 2034 |
2022 Improved debugger support by allowing nested break points and by | 2035 Improved debugger support by allowing nested break points and by |
2023 dealing with stack-overflows when compiling functions before | 2036 dealing with stack-overflows when compiling functions before |
2024 setting break points in them. | 2037 setting break points in them. |
2025 | 2038 |
2026 | 2039 |
2027 2008-07-03: Version 0.1.0 | 2040 2008-07-03: Version 0.1.0 |
2028 | 2041 |
2029 Initial export. | 2042 Initial export. |
2030 | 2043 |
OLD | NEW |