1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(cli): support "deno run --v8-flags=--help" without script (#8110)

This commit is contained in:
Max Drosdo.www 2020-11-22 01:33:42 +03:00 committed by GitHub
parent a4f27c4d57
commit 686a17fc07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1199,6 +1199,13 @@ Directory arguments are expanded to all contained files matching the glob
fn script_arg<'a, 'b>() -> Arg<'a, 'b> {
Arg::with_name("script_arg")
.multiple(true)
// NOTE: these defaults are provided
// so `deno run --v8-flags=--help` works
// without specifying file to run.
.default_value_ifs(&[
("v8-flags", Some("--help"), "_"),
("v8-flags", Some("-help"), "_"),
])
.help("Script arg")
.value_name("SCRIPT_ARG")
}
@ -1646,17 +1653,12 @@ mod tests {
#[test]
fn run_v8_flags() {
let r = flags_from_vec_safe(svec![
"deno",
"run",
"--v8-flags=--help",
"script.ts"
]);
let r = flags_from_vec_safe(svec!["deno", "run", "--v8-flags=--help"]);
assert_eq!(
r.unwrap(),
Flags {
subcommand: DenoSubcommand::Run {
script: "script.ts".to_string(),
script: "_".to_string(),
},
v8_flags: Some(svec!["--help"]),
..Flags::default()