OLD | NEW |
| 1 2010-07-26: Version 2.3.3 |
| 2 |
| 3 Fixed error when building the d8 shell in a fresh checkout. |
| 4 |
| 5 Implemented Function.prototype.bind (ES5 15.3.4.5). |
| 6 |
| 7 Fixed an error in inlined stores on ia32. |
| 8 |
| 9 Fixed an error when setting a breakpoint at the end of a function |
| 10 that does not end with a newline character. |
| 11 |
| 12 Performance improvements on all platforms. |
| 13 |
| 14 |
1 2010-07-21: Version 2.3.2 | 15 2010-07-21: Version 2.3.2 |
2 | 16 |
3 Fixed compiler warnings when building with LLVM. | 17 Fixed compiler warnings when building with LLVM. |
4 | 18 |
5 Fixed a bug with for-in applied to strings (issue 785). | 19 Fixed a bug with for-in applied to strings (issue 785). |
6 | 20 |
7 Performance improvements on all platforms. | 21 Performance improvements on all platforms. |
8 | 22 |
| 23 |
9 2010-07-19: Version 2.3.1 | 24 2010-07-19: Version 2.3.1 |
10 | 25 |
11 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag. | 26 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag. |
12 | 27 |
13 Fixed bug related to code flushing while compiling a lazy | 28 Fixed bug related to code flushing while compiling a lazy |
14 compilable function (issue http://crbug.com/49099). | 29 compilable function (issue http://crbug.com/49099). |
15 | 30 |
16 Performance improvements on all platforms. | 31 Performance improvements on all platforms. |
17 | 32 |
18 | 33 |
(...skipping 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1892 | 1907 |
1893 Improved debugger support by allowing nested break points and by | 1908 Improved debugger support by allowing nested break points and by |
1894 dealing with stack-overflows when compiling functions before | 1909 dealing with stack-overflows when compiling functions before |
1895 setting break points in them. | 1910 setting break points in them. |
1896 | 1911 |
1897 | 1912 |
1898 2008-07-03: Version 0.1.0 | 1913 2008-07-03: Version 0.1.0 |
1899 | 1914 |
1900 Initial export. | 1915 Initial export. |
1901 | 1916 |
OLD | NEW |