OLD | NEW |
| 1 2008-11-17: Version 0.4.4 |
| 2 |
| 3 Reduced code size by using shorter instruction encoding when |
| 4 possible. |
| 5 |
| 6 Added a --help option to the shell sample and to the d8 shell. |
| 7 |
| 8 Added visual studio project files for building the ARM simulator. |
| 9 |
| 10 Fixed a number of ARM simulator issues. |
| 11 |
| 12 Fixed bug in out-of-memory handling on ARM. |
| 13 |
| 14 Implemented shell support for passing arguments to a script from |
| 15 the command line. |
| 16 |
| 17 Fixed bug in date code that made certain date functions return -0 |
| 18 instead of 0 for dates before the epoch. |
| 19 |
| 20 Restricted applications of eval so it can only be used in the |
| 21 context of the associated global object. |
| 22 |
| 23 Treat byte-order marks as whitespace characters. |
| 24 |
| 25 |
1 2008-11-04: Version 0.4.3 | 26 2008-11-04: Version 0.4.3 |
2 | 27 |
3 Added support for API accessors that prohibit overwriting by | 28 Added support for API accessors that prohibit overwriting by |
4 accessors defined in JavaScript code by using __defineGetter__ and | 29 accessors defined in JavaScript code by using __defineGetter__ and |
5 __defineSetter__. | 30 __defineSetter__. |
6 | 31 |
7 Improved handling of conditionals in test status files. | 32 Improved handling of conditionals in test status files. |
8 | 33 |
9 Introduced access control in propertyIsEnumerable. | 34 Introduced access control in propertyIsEnumerable. |
10 | 35 |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 | 466 |
442 Improved debugger support by allowing nested break points and by | 467 Improved debugger support by allowing nested break points and by |
443 dealing with stack-overflows when compiling functions before | 468 dealing with stack-overflows when compiling functions before |
444 setting break points in them. | 469 setting break points in them. |
445 | 470 |
446 | 471 |
447 2008-07-03: Version 0.1.0 | 472 2008-07-03: Version 0.1.0 |
448 | 473 |
449 Initial export. | 474 Initial export. |
450 | 475 |
OLD | NEW |