mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
Fix shorthand env duplicates (#4587)
This commit is contained in:
parent
c0a1d18e3d
commit
6670b77b27
1 changed files with 8 additions and 6 deletions
|
@ -3551,14 +3551,16 @@ pub fn parse_expression(
|
|||
},
|
||||
];
|
||||
|
||||
let expr = Expr::Call(Box::new(Call {
|
||||
head: Span { start: 0, end: 0 },
|
||||
decl_id,
|
||||
named: vec![],
|
||||
positional,
|
||||
}));
|
||||
|
||||
(
|
||||
Expression {
|
||||
expr: Expr::Call(Box::new(Call {
|
||||
head: span(spans),
|
||||
decl_id,
|
||||
named: vec![],
|
||||
positional,
|
||||
})),
|
||||
expr,
|
||||
custom_completion: None,
|
||||
span: span(spans),
|
||||
ty: Type::Unknown,
|
||||
|
|
Loading…
Reference in a new issue