Skip to content

Commit

Permalink
Fix #447
Browse files Browse the repository at this point in the history
  • Loading branch information
CreepySkeleton committed Nov 30, 2020
1 parent 6fa8d68 commit 0239118
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 7 deletions.
17 changes: 10 additions & 7 deletions structopt-derive/src/lib.rs
Expand Up @@ -647,16 +647,19 @@ fn gen_from_subcommand(
_ => false,
});

let other = format_ident!("other");
let matches = format_ident!("matches");

let external = match ext_subcmd {
Some((span, var_name, str_ty, values_of)) => quote_spanned! { span=>
match other {
match #other {
("", ::std::option::Option::None) => None,

(external, Some(matches)) => {
(external, Some(#matches)) => {
::std::option::Option::Some(#name::#var_name(
::std::iter::once(#str_ty::from(external))
.chain(
matches.#values_of("").into_iter().flatten().map(#str_ty::from)
#matches.#values_of("").into_iter().flatten().map(#str_ty::from)
)
.collect::<::std::vec::Vec<_>>()
))
Expand All @@ -682,7 +685,7 @@ fn gen_from_subcommand(
Unit => quote!(),
Unnamed(ref fields) if fields.unnamed.len() == 1 => {
let ty = &fields.unnamed[0];
quote!( ( <#ty as ::structopt::StructOpt>::from_clap(matches) ) )
quote!( ( <#ty as ::structopt::StructOpt>::from_clap(#matches) ) )
}
Unnamed(..) => abort!(
variant.ident,
Expand All @@ -691,7 +694,7 @@ fn gen_from_subcommand(
};

quote! {
(#sub_name, Some(matches)) => {
(#sub_name, Some(#matches)) => {
Some(#name :: #variant_name #constructor_block)
}
}
Expand All @@ -704,7 +707,7 @@ fn gen_from_subcommand(
let ty = &fields.unnamed[0];
quote! {
if let Some(res) =
<#ty as ::structopt::StructOptInternal>::from_subcommand(other)
<#ty as ::structopt::StructOptInternal>::from_subcommand(#other)
{
return Some(#name :: #variant_name (res));
}
Expand All @@ -723,7 +726,7 @@ fn gen_from_subcommand(
) -> Option<Self> {
match sub {
#( #match_arms, )*
other => {
#other => {
#( #child_subcommands )else*;
#external
}
Expand Down
19 changes: 19 additions & 0 deletions tests/regressions.rs
Expand Up @@ -23,3 +23,22 @@ fn invisible_group_issue_439() {
assert!(!help.contains("--x <x>"));
Opts::from_iter_safe(&["test", "--x"]).unwrap();
}

#[test]
fn issue_447() {
macro_rules! Command {
( $name:ident, [
#[$meta:meta] $var:ident($inner:ty)
] ) => {
#[derive(Debug, PartialEq, structopt::StructOpt)]
enum $name {
#[$meta] $var($inner),
}
};
}

Command! {GitCmd, [
#[structopt(external_subcommand)]
Ext(Vec<String>)
]}
}

0 comments on commit 0239118

Please sign in to comment.