forked from extern/nushell
Merge pull request #71 from kubouch/fix-module-error
Fix wrong error span
This commit is contained in:
commit
5ccbf4df67
@ -287,7 +287,10 @@ pub fn parse_module(
|
|||||||
}
|
}
|
||||||
_ => (
|
_ => (
|
||||||
garbage_statement(&pipeline.commands[0].parts),
|
garbage_statement(&pipeline.commands[0].parts),
|
||||||
Some(ParseError::Expected("def".into(), block_span)),
|
Some(ParseError::Expected(
|
||||||
|
"def".into(),
|
||||||
|
pipeline.commands[0].parts[0],
|
||||||
|
)),
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user