mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 22:47:43 +02:00
Command expression need not carry span information.
This commit is contained in:
@ -34,7 +34,7 @@ pub(crate) async fn evaluate_baseline_expr(
|
||||
Ok(UntaggedValue::string(s).into_untagged_value())
|
||||
}
|
||||
Expression::Variable(var) => evaluate_reference(&var, it, vars, env, tag),
|
||||
Expression::Command(_) => unimplemented!(),
|
||||
Expression::Command => unimplemented!(),
|
||||
Expression::Invocation(block) => evaluate_invocation(block, registry, it, vars, env).await,
|
||||
Expression::ExternalCommand(_) => unimplemented!(),
|
||||
Expression::Binary(binary) => {
|
||||
|
Reference in New Issue
Block a user