This commit is contained in:
Lukas Wirth 2021-06-24 16:50:56 +02:00
parent 066bc4f3a4
commit d049783b5d

View file

@ -30,12 +30,12 @@ pub(crate) fn highlight_related(
let token = pick_best_token(syntax.token_at_offset(position.offset), |kind| match kind { let token = pick_best_token(syntax.token_at_offset(position.offset), |kind| match kind {
T![?] => 2, // prefer `?` when the cursor is sandwiched like `await$0?` T![?] => 2, // prefer `?` when the cursor is sandwiched like `await$0?`
T![await] | T![async] | T![->] | T![return] => 1, T![await] | T![async] | T![return] | T![->] => 1,
_ => 0, _ => 0,
})?; })?;
match token.kind() { match token.kind() {
T![?] | T![return] | T![->] => highlight_exit_points(sema, token), T![return] | T![?] | T![->] => highlight_exit_points(sema, token),
T![await] | T![async] => highlight_yield_points(token), T![await] | T![async] => highlight_yield_points(token),
_ => highlight_references(sema, &syntax, position), _ => highlight_references(sema, &syntax, position),
} }
@ -83,22 +83,20 @@ fn highlight_exit_points(
) -> Option<Vec<HighlightedRange>> { ) -> Option<Vec<HighlightedRange>> {
let mut highlights = Vec::new(); let mut highlights = Vec::new();
let body = body?; let body = body?;
walk(&body, |node| { walk(&body, &mut |expr| {
match_ast! { match expr {
match node { ast::Expr::ReturnExpr(expr) => {
ast::ReturnExpr(expr) => if let Some(token) = expr.return_token() { if let Some(token) = expr.return_token() {
highlights.push(HighlightedRange { highlights
access: None, .push(HighlightedRange { access: None, range: token.text_range() });
range: token.text_range(), }
}); }
}, ast::Expr::TryExpr(try_) => {
ast::TryExpr(try_) => if let Some(token) = try_.question_mark_token() { if let Some(token) = try_.question_mark_token() {
highlights.push(HighlightedRange { highlights
access: None, .push(HighlightedRange { access: None, range: token.text_range() });
range: token.text_range(), }
}); }
},
ast::Expr(expr) => match expr {
ast::Expr::MethodCallExpr(_) | ast::Expr::CallExpr(_) | ast::Expr::MacroCall(_) => { ast::Expr::MethodCallExpr(_) | ast::Expr::CallExpr(_) | ast::Expr::MacroCall(_) => {
if sema.type_of_expr(&expr).map_or(false, |ty| ty.is_never()) { if sema.type_of_expr(&expr).map_or(false, |ty| ty.is_never()) {
highlights.push(HighlightedRange { highlights.push(HighlightedRange {
@ -106,16 +104,12 @@ fn highlight_exit_points(
range: expr.syntax().text_range(), range: expr.syntax().text_range(),
}); });
} }
}, }
ast::Expr::EffectExpr(effect) => return effect.async_token().is_some() || effect.try_token().is_some(), ast::Expr::EffectExpr(effect) => {
return effect.async_token().is_some() || effect.try_token().is_some()
}
ast::Expr::ClosureExpr(_) => return true, ast::Expr::ClosureExpr(_) => return true,
_ => (), _ => (),
},
ast::Item(__) => return true,
// Don't look into const args
ast::Path(__) => return true,
_ => (),
}
} }
false false
}); });
@ -123,8 +117,9 @@ fn highlight_exit_points(
ast::Expr::BlockExpr(b) => b.tail_expr(), ast::Expr::BlockExpr(b) => b.tail_expr(),
e => Some(e), e => Some(e),
}; };
if let Some(tail) = tail { if let Some(tail) = tail {
highlights.push(HighlightedRange { access: None, range: tail.syntax().text_range() }); highlights.push(HighlightedRange { access: None, range: tail.syntax().text_range() })
} }
Some(highlights) Some(highlights)
} }
@ -133,7 +128,7 @@ fn highlight_exit_points(
match anc { match anc {
ast::Fn(fn_) => hl(sema, fn_.body().map(ast::Expr::BlockExpr)), ast::Fn(fn_) => hl(sema, fn_.body().map(ast::Expr::BlockExpr)),
ast::ClosureExpr(closure) => hl(sema, closure.body()), ast::ClosureExpr(closure) => hl(sema, closure.body()),
ast::EffectExpr(effect) => if effect.async_token().is_some() || effect.try_token().is_some() { ast::EffectExpr(effect) => if matches!(effect.effect(), ast::Effect::Async(_) | ast::Effect::Try(_)| ast::Effect::Const(_)) {
hl(sema, effect.block_expr().map(ast::Expr::BlockExpr)) hl(sema, effect.block_expr().map(ast::Expr::BlockExpr))
} else { } else {
continue; continue;
@ -153,24 +148,24 @@ fn highlight_yield_points(token: SyntaxToken) -> Option<Vec<HighlightedRange>> {
let mut highlights = Vec::new(); let mut highlights = Vec::new();
highlights.push(HighlightedRange { access: None, range: async_token?.text_range() }); highlights.push(HighlightedRange { access: None, range: async_token?.text_range() });
if let Some(body) = body { if let Some(body) = body {
walk(&body, |node| { walk(&body, &mut |expr| {
match_ast! { match expr {
match node { ast::Expr::AwaitExpr(expr) => {
ast::AwaitExpr(expr) => if let Some(token) = expr.await_token() { if let Some(token) = expr.await_token() {
highlights.push(HighlightedRange { highlights
access: None, .push(HighlightedRange { access: None, range: token.text_range() });
range: token.text_range(),
});
},
// All the following are different contexts so skip them
ast::EffectExpr(effect) => return effect.async_token().is_some() || effect.try_token().is_some(),
ast::ClosureExpr(__) => return true,
ast::Item(__) => return true,
// Don't look into const args
ast::Path(__) => return true,
_ => (),
} }
} }
// All the following are different contexts so skip them
ast::Expr::EffectExpr(effect) => {
return matches!(
effect.effect(),
ast::Effect::Async(_) | ast::Effect::Try(_) | ast::Effect::Const(_)
)
}
ast::Expr::ClosureExpr(__) => return true,
_ => (),
}
false false
}); });
} }
@ -190,17 +185,33 @@ fn highlight_yield_points(token: SyntaxToken) -> Option<Vec<HighlightedRange>> {
} }
/// Preorder walk the expression node skipping a node's subtrees if the callback returns `true` for the node. /// Preorder walk the expression node skipping a node's subtrees if the callback returns `true` for the node.
fn walk(expr: &ast::Expr, mut cb: impl FnMut(SyntaxNode) -> bool) { fn walk(expr: &ast::Expr, cb: &mut dyn FnMut(ast::Expr) -> bool) {
let mut preorder = expr.syntax().preorder(); let mut preorder = expr.syntax().preorder();
while let Some(event) = preorder.next() { while let Some(event) = preorder.next() {
let node = match event { let node = match event {
WalkEvent::Enter(node) => node, WalkEvent::Enter(node) => node,
WalkEvent::Leave(_) => continue, WalkEvent::Leave(_) => continue,
}; };
if cb(node) { match ast::Stmt::cast(node.clone()) {
preorder.skip_subtree(); Some(ast::Stmt::LetStmt(l)) => {
if let Some(expr) = l.initializer() {
walk(&expr, cb);
} }
} }
// Don't skip subtree since we want to process the expression behind this next
Some(ast::Stmt::ExprStmt(_)) => continue,
// skip inner items which might have their own expressions
Some(ast::Stmt::Item(_)) => (),
None => {
if let Some(expr) = ast::Expr::cast(node) {
if !cb(expr) {
continue;
}
}
}
}
preorder.skip_subtree();
}
} }
#[cfg(test)] #[cfg(test)]
@ -434,7 +445,7 @@ fn foo() ->$0 u32 {
never(); never();
// ^^^^^^^ // ^^^^^^^
never!(); never!();
// FIXME sema doesnt give us types for macrocalls // FIXME sema doesn't give us types for macrocalls
Never.never(); Never.never();
// ^^^^^^^^^^^^^ // ^^^^^^^^^^^^^