mirror of
https://github.com/nushell/nushell.git
synced 2025-07-06 09:30:35 +02:00
Remove old alias implementation (#8797)
This commit is contained in:
@ -126,7 +126,7 @@ fn eval_pipeline_without_terminal_expression(
|
||||
|
||||
pub fn parse(contents: &str, engine_state: &EngineState) -> (Block, StateDelta) {
|
||||
let mut working_set = StateWorkingSet::new(engine_state);
|
||||
let output = nu_parser::parse(&mut working_set, None, contents.as_bytes(), false, &[]);
|
||||
let output = nu_parser::parse(&mut working_set, None, contents.as_bytes(), false);
|
||||
|
||||
if let Some(err) = working_set.parse_errors.first() {
|
||||
panic!("test parse error in `{contents}`: {err:?}")
|
||||
|
Reference in New Issue
Block a user