Revert "Refactor external command (#6083)" (#6116)

This reverts commit 0646f1118c.
This commit is contained in:
JT 2022-07-26 05:37:15 +12:00 committed by GitHub
parent 3643ee6dfd
commit 475d32045f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 24 additions and 60 deletions

View File

@ -142,7 +142,7 @@ fn help(
cols.push("is_custom".into());
vals.push(Value::Bool {
val: decl.is_custom_command(),
val: decl.get_block_id().is_some(),
span: head,
});
@ -243,7 +243,7 @@ fn help(
cols.push("is_custom".into());
vals.push(Value::Bool {
val: decl.is_custom_command(),
val: decl.get_block_id().is_some(),
span: head,
});

View File

@ -95,7 +95,7 @@ fn get_entry_in_aliases(engine_state: &EngineState, name: &str, span: Span) -> O
fn get_entry_in_commands(engine_state: &EngineState, name: &str, span: Span) -> Option<Value> {
if let Some(decl_id) = engine_state.find_decl(name.as_bytes(), &[]) {
let (msg, is_builtin) = if engine_state.get_decl(decl_id).is_custom_command() {
let (msg, is_builtin) = if engine_state.get_decl(decl_id).get_block_id().is_some() {
("Nushell custom command", false)
} else {
("Nushell built-in command", true)

View File

@ -1101,7 +1101,7 @@ pub fn create_scope(
cols.push("is_builtin".to_string());
// we can only be a is_builtin or is_custom, not both
vals.push(Value::Bool {
val: !decl.is_custom_command(),
val: decl.get_block_id().is_none(),
span,
});
@ -1119,7 +1119,7 @@ pub fn create_scope(
cols.push("is_custom".to_string());
vals.push(Value::Bool {
val: decl.is_custom_command(),
val: decl.get_block_id().is_some(),
span,
});

View File

@ -30,10 +30,6 @@ impl Command for KnownExternal {
true
}
fn is_builtin(&self) -> bool {
false
}
fn run(
&self,
engine_state: &EngineState,

View File

@ -1079,32 +1079,26 @@ pub fn parse_call(
}
}
let decl = working_set.get_decl(decl_id);
if decl.is_builtin() {
trace!("parsing: internal call");
trace!("parsing: internal call");
// parse internal command
let parsed_call = parse_internal_call(
working_set,
span(&spans[cmd_start..pos]),
&spans[pos..],
decl_id,
expand_aliases_denylist,
);
// parse internal command
let parsed_call = parse_internal_call(
working_set,
span(&spans[cmd_start..pos]),
&spans[pos..],
decl_id,
expand_aliases_denylist,
);
(
Expression {
expr: Expr::Call(parsed_call.call),
span: span(spans),
ty: parsed_call.output,
custom_completion: None,
},
parsed_call.error,
)
} else {
trace!("parsing: `extern` custom command as external call");
parse_external_call(working_set, spans, expand_aliases_denylist)
}
(
Expression {
expr: Expr::Call(parsed_call.call),
span: span(spans),
ty: parsed_call.output,
custom_completion: None,
},
parsed_call.error,
)
} else {
// We might be parsing left-unbounded range ("..10")
let bytes = working_set.get_span_contents(spans[0]);

View File

@ -37,16 +37,6 @@ pub trait Command: Send + Sync + CommandClone {
false
}
// This is an enhanced method to determine if a command is custom command or not
// since extern "foo" [] and def "foo" [] behaves differently
fn is_custom_command(&self) -> bool {
if self.get_block_id().is_some() {
true
} else {
self.is_known_external()
}
}
// Is a sub command
fn is_sub(&self) -> bool {
self.name().contains(' ')

View File

@ -12,23 +12,7 @@ fn known_external_runs() -> TestResult {
fn known_external_unknown_flag() -> TestResult {
fail_test(
r#"extern "cargo version" []; cargo version --no-such-flag"#,
"Found argument '--no-such-flag' which wasn't expected, or isn't valid in this context",
)
}
#[test]
fn known_external_not_defined_flag() -> TestResult {
run_test_contains(
r#"extern "cargo version" []; cargo version --help"#,
"Show version information",
)
}
#[test]
fn known_external_is_custom() -> TestResult {
run_test_contains(
r#"extern "cargo version" []; help commands | where is_custom == true | get name"#,
"cargo version",
"command doesn't have flag",
)
}