Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 2011-10-26: Version 3.7.1 | |
| 2 | |
| 3 Achieved 33% speedup in debug-mode tests. | |
| 4 | |
| 5 Removed special casing of calls to RegExp test and exec methods with no | |
| 6 argument. Now matches new JSC behaviour. Chromium bug 75740. | |
|
Vyacheslav Egorov (Chromium)
2011/10/26 13:29:52
crbug.com/75740
| |
| 7 | |
| 8 Return the empty string on cyclic references in toString (ES5 | |
| 9 conformance). | |
| 10 | |
| 11 Fixed bug triggered by JSBeautifier. Chromium bug 100409. | |
|
Vyacheslav Egorov (Chromium)
2011/10/26 13:29:52
crbug.com/100409
| |
| 12 | |
| 13 Made Math.random state per-context instead of per-process (issue 864). | |
| 14 | |
| 15 Fixed stack traces to skip native functions. | |
| 16 | |
| 17 Make snapshots (new contexts) smaller and faster. | |
| 18 | |
| 19 Fixed handling of Function.apply for non-array arguments. | |
| 20 | |
| 21 Fixed evaluation order in defineProperties to match FireFox. | |
| 22 | |
| 23 Fixed handling of non-object receivers for array builtins, Chromium bug | |
| 24 100702. | |
| 25 | |
| 26 Multiple fixes to improve compliance with test262. | |
| 27 | |
| 28 Fixed compatibility with older Android releases. | |
| 29 | |
| 30 Fixed compilation with gcc-4.5.3. | |
| 31 | |
| 32 Improved performance of WriteUtf8, issue 1665. | |
| 33 | |
| 34 Made native syntax an early error in the preparser. | |
| 35 | |
| 36 Fixed issues 793 and 893 relating to Function.prototype.bind. | |
| 37 | |
| 38 Improved let, const, Set and Map support and other Harmony features | |
| 39 (behind the --harmony flag). | |
| 40 | |
| 41 Changed evaluation order for > and <= to match ES5 instead of ES3. | |
| 42 | |
| 43 Bug fixes and performance improvements on all platforms. | |
| 44 | |
| 45 | |
| 1 2011-10-13: Version 3.7.0 | 46 2011-10-13: Version 3.7.0 |
| 2 | 47 |
| 3 Fixed array handling for Object.defineOwnProperty (ES5 conformance). | 48 Fixed array handling for Object.defineOwnProperty (ES5 conformance). |
| 4 | 49 |
| 5 Fixed issue 1757 (string slices of external strings). | 50 Fixed issue 1757 (string slices of external strings). |
| 6 | 51 |
| 7 Fixed issue 1759 (ARM). | 52 Fixed issue 1759 (ARM). |
| 8 | 53 |
| 9 Added flag --noclever-optimizations to disable some things that | 54 Added flag --noclever-optimizations to disable some things that |
| 10 caused trouble in the past. | 55 caused trouble in the past. |
| (...skipping 3344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3355 setting break points in them. | 3400 setting break points in them. |
| 3356 | 3401 |
| 3357 | 3402 |
| 3358 2008-07-03: Version 0.1.0 | 3403 2008-07-03: Version 0.1.0 |
| 3359 | 3404 |
| 3360 Initial export. | 3405 Initial export. |
| 3361 | 3406 |
| 3362 # Local Variables: | 3407 # Local Variables: |
| 3363 # mode:text | 3408 # mode:text |
| 3364 # End: | 3409 # End: |
| OLD | NEW |