OLD | NEW |
| 1 2010-02-19: Version 2.1.1 |
| 2 |
| 3 [ES5] Implemented Object.defineProperty. |
| 4 |
| 5 Improved profiler support. |
| 6 |
| 7 Added SetPrototype method in the public V8 API. |
| 8 |
| 9 Added GetScriptOrigin and GetScriptLineNumber methods to Function |
| 10 objects in the API. |
| 11 |
| 12 Performance improvements on all platforms. |
| 13 |
| 14 |
1 2010-02-03: Version 2.1.0 | 15 2010-02-03: Version 2.1.0 |
2 | 16 |
3 Values are now always wrapped in objects when used as a receiver. | 17 Values are now always wrapped in objects when used as a receiver. |
4 (issue 223). | 18 (issue 223). |
5 | 19 |
6 [ES5] Implemented Object.getOwnPropertyNames. | 20 [ES5] Implemented Object.getOwnPropertyNames. |
7 | 21 |
8 [ES5] Restrict JSON.parse to only accept strings that conforms to the | 22 [ES5] Restrict JSON.parse to only accept strings that conforms to the |
9 JSON grammar. | 23 JSON grammar. |
10 | 24 |
(...skipping 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1499 | 1513 |
1500 Improved debugger support by allowing nested break points and by | 1514 Improved debugger support by allowing nested break points and by |
1501 dealing with stack-overflows when compiling functions before | 1515 dealing with stack-overflows when compiling functions before |
1502 setting break points in them. | 1516 setting break points in them. |
1503 | 1517 |
1504 | 1518 |
1505 2008-07-03: Version 0.1.0 | 1519 2008-07-03: Version 0.1.0 |
1506 | 1520 |
1507 Initial export. | 1521 Initial export. |
1508 | 1522 |
OLD | NEW |