| OLD | NEW |
| 1 2011-02-02: Version 3.1.1 |
| 2 |
| 3 Perform security checks before fetching the value in |
| 4 Object.getOwnPropertyDescriptor. |
| 5 |
| 6 Fixed a bug in Array.prototype.splice triggered by passing no |
| 7 arguments. |
| 8 |
| 9 Fixed bugs in -0 in arithmetic and in Math.pow. |
| 10 |
| 11 Fixed bugs in the register allocator and in switching from optimized |
| 12 to unoptimized code. |
| 13 |
| 14 |
| 15 2011-01-31: Version 3.1.0 |
| 16 |
| 17 Performance improvements on all platforms. |
| 18 |
| 19 |
| 20 2011-01-28: Version 3.0.12 |
| 21 |
| 22 Added support for strict mode parameter and object property |
| 23 validation. |
| 24 |
| 25 Fixed a couple of crash bugs. |
| 26 |
| 27 |
| 1 2011-01-25: Version 3.0.11 | 28 2011-01-25: Version 3.0.11 |
| 2 | 29 |
| 3 Fixed a bug in deletion of lookup slots that could cause global | 30 Fixed a bug in deletion of lookup slots that could cause global |
| 4 variables to be accidentally deleted (http://crbug.com/70066). | 31 variables to be accidentally deleted (http://crbug.com/70066). |
| 5 | 32 |
| 6 Added support for strict mode octal literal verification. | 33 Added support for strict mode octal literal verification. |
| 7 | 34 |
| 8 Fixed a couple of crash bugs (issues 1070 and 1071). | 35 Fixed a couple of crash bugs (issues 1070 and 1071). |
| 9 | 36 |
| 10 | 37 |
| (...skipping 2406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2417 | 2444 |
| 2418 Improved debugger support by allowing nested break points and by | 2445 Improved debugger support by allowing nested break points and by |
| 2419 dealing with stack-overflows when compiling functions before | 2446 dealing with stack-overflows when compiling functions before |
| 2420 setting break points in them. | 2447 setting break points in them. |
| 2421 | 2448 |
| 2422 | 2449 |
| 2423 2008-07-03: Version 0.1.0 | 2450 2008-07-03: Version 0.1.0 |
| 2424 | 2451 |
| 2425 Initial export. | 2452 Initial export. |
| 2426 | 2453 |
| OLD | NEW |