Fix known externals, fix operator spans (#5140)

This commit is contained in:
JT
2022-04-09 17:17:48 +12:00
committed by GitHub
parent 683b912263
commit 14066ccc30
16 changed files with 186 additions and 127 deletions

View File

@@ -150,7 +150,7 @@ pub fn flatten_expression(
}
for named in call.named_iter() {
args.push((named.0.span, FlatShape::Flag));
if let Some(expr) = &named.1 {
if let Some(expr) = &named.2 {
args.extend(flatten_expression(working_set, expr));
}
}