OLD | NEW |
| 1 2010-08-09: Version 2.3.6 |
| 2 |
| 3 RegExp literals create a new object every time they are evaluated |
| 4 (issue 704). |
| 5 |
| 6 Object.seal and Object.freeze return the modified object (issue 809). |
| 7 |
| 8 Fix building using GCC 4.4.4. |
| 9 |
| 10 |
1 2010-08-04: Version 2.3.5 | 11 2010-08-04: Version 2.3.5 |
2 | 12 |
3 Added support for ES5 property names. Object initialisers and | 13 Added support for ES5 property names. Object initialisers and |
4 dot-notation property access now allows keywords. Also allowed | 14 dot-notation property access now allows keywords. Also allowed |
5 non-identifiers after "get" or "set" in an object initialiser. | 15 non-identifiers after "get" or "set" in an object initialiser. |
6 | 16 |
7 Randomize the addresses of allocated executable memory on Windows. | 17 Randomize the addresses of allocated executable memory on Windows. |
8 | 18 |
9 | 19 |
10 2010-08-02: Version 2.3.4 | 20 2010-08-02: Version 2.3.4 |
(...skipping 1930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1941 | 1951 |
1942 Improved debugger support by allowing nested break points and by | 1952 Improved debugger support by allowing nested break points and by |
1943 dealing with stack-overflows when compiling functions before | 1953 dealing with stack-overflows when compiling functions before |
1944 setting break points in them. | 1954 setting break points in them. |
1945 | 1955 |
1946 | 1956 |
1947 2008-07-03: Version 0.1.0 | 1957 2008-07-03: Version 0.1.0 |
1948 | 1958 |
1949 Initial export. | 1959 Initial export. |
1950 | 1960 |
OLD | NEW |