mirror of
https://github.com/nushell/nushell.git
synced 2025-08-12 08:29:52 +02:00
Remove Span::unknown (#525)
This commit is contained in:
@ -20,7 +20,7 @@ impl Call {
|
||||
pub fn new() -> Call {
|
||||
Self {
|
||||
decl_id: 0,
|
||||
head: Span::unknown(),
|
||||
head: Span { start: 0, end: 0 },
|
||||
positional: vec![],
|
||||
named: vec![],
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ impl ImportPattern {
|
||||
ImportPattern {
|
||||
head: ImportPatternHead {
|
||||
name: vec![],
|
||||
span: Span::unknown(),
|
||||
span: Span { start: 0, end: 0 },
|
||||
},
|
||||
members: vec![],
|
||||
hidden: HashSet::new(),
|
||||
|
Reference in New Issue
Block a user