OLD | NEW |
---|---|
(Empty) | |
1 V8 JavaScript Engine | |
2 ============= | |
3 | |
4 V8 is Google's open source JavaScript engine. | |
5 | |
6 V8 is written in C++ and is used in Google Chrome, the open source | |
7 browser from Google. | |
8 | |
9 V8 implements ECMAScript as specified in ECMA-262, 5th edition, and runs | |
mathias
2014/10/16 20:35:08
Parts of it are ES6 already. Maybe just leave it a
mnaganov (inactive)
2014/10/20 09:48:00
Done.
| |
10 on Windows (XP or newer), Mac OS X (10.5 or newer), and Linux systems | |
11 that use IA-32, x64, or ARM processors. | |
12 | |
13 V8 can run standalone, or can be embedded into any C++ application. | |
14 | |
15 V8 Project page: https://code.google.com/p/v8/ | |
16 | |
17 | |
18 Getting the Code | |
19 ============ | |
20 | |
21 V8 Git repository: https://chromium.googlesource.com/v8/v8.git | |
22 GitHub mirror: https://github.com/v8/v8-git-mirror | |
23 | |
24 For fetching all branches, add the following into your remote | |
25 configuration in `.git/config`: | |
26 | |
27 fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* | |
28 fetch = +refs/tags/*:refs/tags/* | |
OLD | NEW |