OLD | NEW |
| 1 2009-08-19: Version 1.3.5 |
| 2 |
| 3 Optimize initialization of some arrays in the builtins. |
| 4 |
| 5 Fix mac-nm script to support filenames with spaces. |
| 6 |
| 7 Support for using the V8 profiler when V8 is embedded in a Windows DLL. |
| 8 |
| 9 Changed typeof RegExp from 'object' to 'function' for compatibility. |
| 10 Fixed bug where regexps were not callable across contexts. |
| 11 |
| 12 Added context independent script compilation to the API. |
| 13 |
| 14 Added API call to get the stack trace for an exception. |
| 15 |
| 16 Added API for getting object mirrors. |
| 17 |
| 18 Make sure that SSE3 instructions are used whenever possible even when |
| 19 running off a snapshot generated without using SSE3 instructions. |
| 20 |
| 21 Tweaked the handling of the initial size and growth policy of the heap. |
| 22 |
| 23 Added native code generation for RegExp to 64-bit version. |
| 24 |
| 25 Added JavaScript debugger support to 64-bit version. |
| 26 |
| 27 |
1 2009-08-13: Version 1.3.4 | 28 2009-08-13: Version 1.3.4 |
2 | 29 |
3 Added a readline() command to the d8 shell. | 30 Added a readline() command to the d8 shell. |
4 | 31 |
5 Fixed bug in json parsing. | 32 Fixed bug in json parsing. |
6 | 33 |
7 Added idle notification to the API and reduced memory on idle | 34 Added idle notification to the API and reduced memory on idle |
8 notifications. | 35 notifications. |
9 | 36 |
10 | 37 |
(...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 | 1166 |
1140 Improved debugger support by allowing nested break points and by | 1167 Improved debugger support by allowing nested break points and by |
1141 dealing with stack-overflows when compiling functions before | 1168 dealing with stack-overflows when compiling functions before |
1142 setting break points in them. | 1169 setting break points in them. |
1143 | 1170 |
1144 | 1171 |
1145 2008-07-03: Version 0.1.0 | 1172 2008-07-03: Version 0.1.0 |
1146 | 1173 |
1147 Initial export. | 1174 Initial export. |
1148 | 1175 |
OLD | NEW |