commit | 9a6069d19415a893834e973edb161f104d706ffe | [log] [tgz] |
---|---|---|
author | yangguo <yangguo@chromium.org> | Tue Mar 15 12:54:27 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Mar 15 12:55:25 2016 |
tree | a907a488d7d75f06cdef6647305b307632c93f02 | |
parent | ccbf004293f19dd76f0abf68add8fe01434d9ef9 [diff] |
Small fix for the timer event plotter. Sometimes v8.log entries are cut off, and leave an unpaired quote. Since the log is piped into d8 to run the tick processor, that quote is interpreted to escape a line break. This fix makes sure that we break lines even with unpaired quotes. R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/1802303002 Cr-Commit-Position: refs/heads/master@{#34786}
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://github.com/v8/v8/wiki
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/*
Please follow the instructions mentioned on the V8 wiki.