commit | 9780ddeb9685c30cf64a337446b9a7413a3be64f | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Mon Aug 17 08:01:55 2015 |
committer | Commit bot <commit-bot@chromium.org> | Mon Aug 17 08:02:08 2015 |
tree | 44e7579162e1696217ce8b5c9a9aba40382bc58e | |
parent | 9fdbc1e25c8fb9a0a1b0e9fbb36c817b2d70d58d [diff] |
[runtime] Unify and fix the strict equality comparison. Add Object::StrictEquals to unify the implementation of strict equality comparison in the runtime and the api (the api was already missing a case for SIMD). Now we (almost) have a single bottleneck for strict equality, we just need to reduce the amount of unnecessary complexity for the code stub. R=yangguo@chromium.org Review URL: https://codereview.chromium.org/1298603002 Cr-Commit-Position: refs/heads/master@{#30186}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://code.google.com/p/v8/
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8
and fetch all of its dependencies. To stay up to date, run
git pull origin gclient sync
For fetching all branches, add the following into your remote configuration in .git/config
:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* fetch = +refs/tags/*:refs/tags/*