Added handling of "--nolazy" flag

See https://phabricator.babeljs.io/T6897
This commit is contained in:
Stefan Kleeschulte
2015-12-29 06:43:46 +01:00
parent 570b50c895
commit f9bab3a25c

View File

@@ -37,6 +37,10 @@ getV8Flags(function (err, v8Flags) {
case "--expose-gc":
args.unshift("--expose-gc");
break;
case "--nolazy":
args.unshift("--nolazy");
break;
default:
if (v8Flags.indexOf(arg) >= 0 || arg.indexOf("--trace") === 0) {