OLD | NEW |
| 1 2009-07-30: Version 1.3.1 |
| 2 |
| 3 Speed improvements to accessors and interceptors. |
| 4 |
| 5 Added support for capturing stack information on custom errors. |
| 6 |
| 7 Added support for morphing an object into a pixel array where its |
| 8 indexed properties are stored in an external byte array. Values written |
| 9 are always clamped to the 0..255 interval. |
| 10 |
| 11 Profiler on x64 now handles C/C++ functions from shared libraries. |
| 12 |
| 13 Changed the debugger to avoid stepping into function.call/apply if the |
| 14 function is a built-in. |
| 15 |
| 16 Initial implementation of constructor heap profile for JS objects. |
| 17 |
| 18 More fine grained control of profiling aspects through the API. |
| 19 |
| 20 Optimized the called as constructor check for API calls. |
| 21 |
| 22 |
1 2009-07-27: Version 1.3.0 | 23 2009-07-27: Version 1.3.0 |
2 | 24 |
3 Allowed RegExp objects to be called as functions (issue 132). | 25 Allowed RegExp objects to be called as functions (issue 132). |
4 | 26 |
5 Fixed issue where global property cells would escape after | 27 Fixed issue where global property cells would escape after |
6 detaching the global object; see http://crbug.com/16276. | 28 detaching the global object; see http://crbug.com/16276. |
7 | 29 |
8 Added support for stepping into setters and getters in the | 30 Added support for stepping into setters and getters in the |
9 debugger. | 31 debugger. |
10 | 32 |
(...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1074 | 1096 |
1075 Improved debugger support by allowing nested break points and by | 1097 Improved debugger support by allowing nested break points and by |
1076 dealing with stack-overflows when compiling functions before | 1098 dealing with stack-overflows when compiling functions before |
1077 setting break points in them. | 1099 setting break points in them. |
1078 | 1100 |
1079 | 1101 |
1080 2008-07-03: Version 0.1.0 | 1102 2008-07-03: Version 0.1.0 |
1081 | 1103 |
1082 Initial export. | 1104 Initial export. |
1083 | 1105 |
OLD | NEW |