OLD | NEW |
| 1 2010-08-02: Version 2.3.4 |
| 2 |
| 3 Fixed problems in implementation of ES5 function.prototype.bind. |
| 4 |
| 5 Fixed error when using apply with arguments object on ARM (issue 784). |
| 6 |
| 7 Added setting of global flags to debugger protocol. |
| 8 |
| 9 Fixed an error affecting cached results of sin and cos (issue 792). |
| 10 |
| 11 Removed memory leak from a boundary case where V8 is not initialized. |
| 12 |
| 13 Fixed issue where debugger could set breakpoints outside the body |
| 14 of a function. |
| 15 |
| 16 Fixed issue in debugger when using both live edit and step in features. |
| 17 |
| 18 Added Number-letter (Nl) category to Unicode tables. These characters |
| 19 can now be used in identifiers. |
| 20 |
| 21 Fixed an assert failure on X64 (issue 806). |
| 22 |
| 23 Performance improvements on all platforms. |
| 24 |
| 25 |
1 2010-07-26: Version 2.3.3 | 26 2010-07-26: Version 2.3.3 |
2 | 27 |
3 Fixed error when building the d8 shell in a fresh checkout. | 28 Fixed error when building the d8 shell in a fresh checkout. |
4 | 29 |
5 Implemented Function.prototype.bind (ES5 15.3.4.5). | 30 Implemented Function.prototype.bind (ES5 15.3.4.5). |
6 | 31 |
7 Fixed an error in inlined stores on ia32. | 32 Fixed an error in inlined stores on ia32. |
8 | 33 |
9 Fixed an error when setting a breakpoint at the end of a function | 34 Fixed an error when setting a breakpoint at the end of a function |
10 that does not end with a newline character. | 35 that does not end with a newline character. |
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1907 | 1932 |
1908 Improved debugger support by allowing nested break points and by | 1933 Improved debugger support by allowing nested break points and by |
1909 dealing with stack-overflows when compiling functions before | 1934 dealing with stack-overflows when compiling functions before |
1910 setting break points in them. | 1935 setting break points in them. |
1911 | 1936 |
1912 | 1937 |
1913 2008-07-03: Version 0.1.0 | 1938 2008-07-03: Version 0.1.0 |
1914 | 1939 |
1915 Initial export. | 1940 Initial export. |
1916 | 1941 |
OLD | NEW |