Commit 46595443 authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

tick processor: fix arguments and comments

Node.js uses the tick processor as well, but wraps the script
differently so that `this.arguments` does not work.

Also fixed outdated comments.

R=petermarshall@chromium.org

Change-Id: Ia902962b302ec4aa02d31a6ac31ac20510ddcca7
Reviewed-on: https://chromium-review.googlesource.com/c/1304353Reviewed-by: 's avatarPeter Marshall <petermarshall@chromium.org>
Commit-Queue: Yang Guo <yangguo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#57061}
parent 0fc26d84
......@@ -28,7 +28,7 @@ fi
if [ ! -x "$d8_exec" ]; then
echo "d8 shell not found in $D8_PATH"
echo "To build, execute 'make native' from the V8 directory"
echo "Please provide path to d8 as env var in D8_PATH"
exit 1
fi
......
......@@ -28,7 +28,7 @@ fi
if [ ! -x "$d8_exec" ]; then
echo "d8 shell not found in $D8_PATH"
echo "To build, execute 'make native' from the V8 directory"
echo "Please provide path to d8 as env var in D8_PATH"
exit 1
fi
......
......@@ -28,7 +28,7 @@ fi
if [ ! -x "$d8_exec" ]; then
echo "d8 shell not found in $D8_PATH"
echo "To build, execute 'make native' from the V8 directory"
echo "Please provide path to d8 as env var in D8_PATH"
exit 1
fi
......
......@@ -32,7 +32,7 @@ fi
if test ! -x "$d8_exec"; then
echo "d8 shell not found in $D8_PATH"
echo "To build, execute 'make native' from the V8 directory"
echo "Please provide path to d8 as env var in D8_PATH"
exit 1
fi
......
......@@ -55,7 +55,7 @@ var entriesProviders = {
'mac': MacCppEntriesProvider
};
var params = processArguments(this.arguments || []);
var params = processArguments(arguments || []);
var sourceMap = null;
if (params.sourceMap) {
initSourceMapSupport();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment