OLD | NEW |
| 1 2009-04-14: Version 1.1.9 |
| 2 |
| 3 Made the stack traversal code in the profiler robust by avoiding |
| 4 to look into the heap. |
| 5 |
| 6 Added name inferencing for anonymous functions to facilitate |
| 7 debugging and profiling. |
| 8 |
| 9 Re-enabled stats timers in the developer shell (d8). |
| 10 |
| 11 Fixed issue 303 by avoiding to shortcut cons-symbols. |
| 12 |
| 13 |
1 2009-04-11: Version 1.1.8 | 14 2009-04-11: Version 1.1.8 |
2 | 15 |
3 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96). | 16 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96). |
4 | 17 |
5 Fixed step-in handling for Function.prototype.apply and call in | 18 Fixed step-in handling for Function.prototype.apply and call in |
6 the debugger (issue 269). | 19 the debugger (issue 269). |
7 | 20 |
8 Fixed v8::Object::DeleteHiddenValue to not bail out when there | 21 Fixed v8::Object::DeleteHiddenValue to not bail out when there |
9 are no hidden properties. | 22 are no hidden properties. |
10 | 23 |
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 | 795 |
783 Improved debugger support by allowing nested break points and by | 796 Improved debugger support by allowing nested break points and by |
784 dealing with stack-overflows when compiling functions before | 797 dealing with stack-overflows when compiling functions before |
785 setting break points in them. | 798 setting break points in them. |
786 | 799 |
787 | 800 |
788 2008-07-03: Version 0.1.0 | 801 2008-07-03: Version 0.1.0 |
789 | 802 |
790 Initial export. | 803 Initial export. |
791 | 804 |
OLD | NEW |