Merge pull request #263 from jonathandturner/defer-evaluation

get tests passing by fixing classifying external
This commit is contained in:
Jonathan Turner 2019-08-08 17:10:32 +12:00 committed by GitHub
commit f17c6a5a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -478,8 +478,7 @@ fn classify_command(
args,
}))
}
false => match context.get_command(name).as_ref() {
Command::Static(_command) => {
false => {
let arg_list_strings: Vec<Spanned<String>> = match call.children() {
//Some(args) => args.iter().map(|i| i.as_external_arg(source)).collect(),
Some(args) => args
@ -501,7 +500,6 @@ fn classify_command(
args: arg_list_strings,
}))
}
},
}
}