OLD | NEW |
| 1 2009-07-06: Version 1.2.12 |
| 2 |
| 3 Added stack traces collection to Error objects accessible through |
| 4 the e.stack property. |
| 5 |
| 6 Changed RegExp parser to use a recursive data structure instead of |
| 7 stack-based recursion. |
| 8 |
| 9 Optimized Date object construction and string concatenation. |
| 10 |
| 11 Improved performance of div, mod, and mul on ARM platforms. |
| 12 |
| 13 |
1 2009-07-02: Version 1.2.11 | 14 2009-07-02: Version 1.2.11 |
2 | 15 |
3 Improved performance on IA-32 and ARM. | 16 Improved performance on IA-32 and ARM. |
4 | 17 |
5 Fixed profiler sampler implementation on Mac OS X. | 18 Fixed profiler sampler implementation on Mac OS X. |
6 | 19 |
7 Changed the representation of global objects to improve | 20 Changed the representation of global objects to improve |
8 performance of adding a lot of new properties. | 21 performance of adding a lot of new properties. |
9 | 22 |
10 | 23 |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 | 1022 |
1010 Improved debugger support by allowing nested break points and by | 1023 Improved debugger support by allowing nested break points and by |
1011 dealing with stack-overflows when compiling functions before | 1024 dealing with stack-overflows when compiling functions before |
1012 setting break points in them. | 1025 setting break points in them. |
1013 | 1026 |
1014 | 1027 |
1015 2008-07-03: Version 0.1.0 | 1028 2008-07-03: Version 0.1.0 |
1016 | 1029 |
1017 Initial export. | 1030 Initial export. |
1018 | 1031 |
OLD | NEW |