mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 10:05:54 +02:00
Fix known externals, fix operator spans (#5140)
This commit is contained in:
@ -29,7 +29,7 @@ impl EvaluatedCall {
|
||||
.collect::<Result<Vec<Value>, ShellError>>()?;
|
||||
|
||||
let mut named = Vec::with_capacity(call.named_len());
|
||||
for (string, expr) in call.named_iter() {
|
||||
for (string, _, expr) in call.named_iter() {
|
||||
let value = match expr {
|
||||
None => None,
|
||||
Some(expr) => Some(eval_expression(engine_state, stack, expr)?),
|
||||
|
Reference in New Issue
Block a user