This commit is contained in:
Jonathan Turner
2019-08-10 08:49:43 +12:00
parent 34759b7646
commit eeed31837f
17 changed files with 47 additions and 288 deletions

View File

@ -352,7 +352,6 @@ async fn process_line(readline: Result<String, ReadlineError>, ctx: &mut Context
.push(ClassifiedCommand::Internal(InternalCommand {
command: static_command(autoview::Autoview),
name_span: Span::unknown(),
source_map: ctx.source_map.clone(),
args: hir::Call::new(
Box::new(hir::Expression::synthetic_string("autoview")),
None,
@ -489,7 +488,6 @@ fn classify_command(
Ok(ClassifiedCommand::Internal(InternalCommand {
command,
name_span: head.span().clone(),
source_map: context.source_map.clone(),
args,
}))
}