OLD | NEW |
| 1 2011-07-11: Version 3.4.11 |
| 2 |
| 3 Fixed MinGW32 build. |
| 4 |
| 5 Fixed a GC bug with RegExp code flushing. |
| 6 |
| 7 Implemented Object.defineProperty for proxies. |
| 8 |
| 9 Fixed a bug in for/in iteration of arguments objects (issue 1531). |
| 10 |
| 11 Added debugger support for inspecting optimized frames (issue 1140). |
| 12 |
| 13 Allowed JSObject::PreventExtensions to work for arguments objects. |
| 14 |
| 15 Bugfixes and performance work. |
| 16 |
| 17 |
1 2011-07-06: Version 3.4.10 | 18 2011-07-06: Version 3.4.10 |
2 | 19 |
3 Fixed debugger not breaking on certain "if" statements (issue 1523). | 20 Fixed debugger not breaking on certain "if" statements (issue 1523). |
4 | 21 |
5 Fixed assertion failure in runtime profiler when running on IA32 | 22 Fixed assertion failure in runtime profiler when running on IA32 |
6 without snapshot (issue 1522). | 23 without snapshot (issue 1522). |
7 | 24 |
8 Fixed ABI for API calls on IA32 (for clang compatibility). | 25 Fixed ABI for API calls on IA32 (for clang compatibility). |
9 | 26 |
10 Introduced code flushing of RegExp code to free memory used by | 27 Introduced code flushing of RegExp code to free memory used by |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 46 |
30 Fixed a bug in Object.defineProperty on the arguments object. | 47 Fixed a bug in Object.defineProperty on the arguments object. |
31 | 48 |
32 Performance improvements on all platforms. | 49 Performance improvements on all platforms. |
33 | 50 |
34 | 51 |
35 2011-06-29: Version 3.4.8 | 52 2011-06-29: Version 3.4.8 |
36 | 53 |
37 Ensure 16-byte stack alignment on Solaris (issue 1505). | 54 Ensure 16-byte stack alignment on Solaris (issue 1505). |
38 | 55 |
39 Fix "illegal access" when calling parseInt with a radix | 56 Fix "illegal access" when calling parseInt with a radix |
40 that is not a smi. (issue 1246). | 57 that is not a smi. (issue 1246). |
41 | 58 |
42 | 59 |
43 2011-06-27: Version 3.4.7 | 60 2011-06-27: Version 3.4.7 |
44 | 61 |
45 Fixed 64-bit build on FreeBSD. | 62 Fixed 64-bit build on FreeBSD. |
46 | 63 |
47 Added API to set the property attributes for the prototype | 64 Added API to set the property attributes for the prototype |
48 property on functions created from FunctionTemplates. | 65 property on functions created from FunctionTemplates. |
49 | 66 |
(...skipping 2969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3019 setting break points in them. | 3036 setting break points in them. |
3020 | 3037 |
3021 | 3038 |
3022 2008-07-03: Version 0.1.0 | 3039 2008-07-03: Version 0.1.0 |
3023 | 3040 |
3024 Initial export. | 3041 Initial export. |
3025 | 3042 |
3026 # Local Variables: | 3043 # Local Variables: |
3027 # mode:text | 3044 # mode:text |
3028 # End: | 3045 # End: |
OLD | NEW |