OLD | NEW |
| 1 2011-06-01: Version 3.4.1 |
| 2 |
| 3 Fixed JSON stringify issue with arrays. |
| 4 |
| 5 Changed calls to JS builtins to be passed undefined when called with |
| 6 implicit receiver. |
| 7 |
| 8 Implemented the set trap for Harmony proxies. Proxies still need to |
| 9 be enabled with the --harmony-proxies flag. |
| 10 |
| 11 |
1 2011-05-30: Version 3.4.0 | 12 2011-05-30: Version 3.4.0 |
2 | 13 |
3 Changed calls to undefined property setters to not throw (issue 1355). | 14 Changed calls to undefined property setters to not throw (issue 1355). |
4 | 15 |
5 Made RegExp objects not callable. | 16 Made RegExp objects not callable. |
6 | 17 |
7 Fixed issues on special case large JSON strings in new json parser | 18 Fixed issues on special case large JSON strings in new json parser |
8 (issues http://crbug.com/83877 and http://crbug.com/84186). | 19 (issues http://crbug.com/83877 and http://crbug.com/84186). |
9 | 20 |
10 Performance improvements on all platforms. | 21 Performance improvements on all platforms. |
(...skipping 2831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2842 | 2853 |
2843 Improved debugger support by allowing nested break points and by | 2854 Improved debugger support by allowing nested break points and by |
2844 dealing with stack-overflows when compiling functions before | 2855 dealing with stack-overflows when compiling functions before |
2845 setting break points in them. | 2856 setting break points in them. |
2846 | 2857 |
2847 | 2858 |
2848 2008-07-03: Version 0.1.0 | 2859 2008-07-03: Version 0.1.0 |
2849 | 2860 |
2850 Initial export. | 2861 Initial export. |
2851 | 2862 |
OLD | NEW |