2021-06-22 17:39:59 +00:00
|
|
|
use hir::Semantics;
|
|
|
|
use ide_db::{
|
|
|
|
base_db::FilePosition,
|
|
|
|
defs::Definition,
|
2021-06-23 12:56:40 +00:00
|
|
|
helpers::pick_best_token,
|
2021-06-22 17:39:59 +00:00
|
|
|
search::{FileReference, ReferenceAccess, SearchScope},
|
|
|
|
RootDatabase,
|
|
|
|
};
|
2021-06-24 15:19:27 +00:00
|
|
|
use syntax::{
|
|
|
|
ast::{self, LoopBodyOwner},
|
|
|
|
match_ast, AstNode, SyntaxNode, SyntaxToken, TextRange, WalkEvent, T,
|
|
|
|
};
|
2021-06-22 17:39:59 +00:00
|
|
|
|
|
|
|
use crate::{display::TryToNav, references, NavigationTarget};
|
|
|
|
|
2021-06-23 23:32:56 +00:00
|
|
|
pub struct HighlightedRange {
|
2021-06-22 17:39:59 +00:00
|
|
|
pub range: TextRange,
|
|
|
|
pub access: Option<ReferenceAccess>,
|
|
|
|
}
|
|
|
|
|
2021-06-23 15:05:00 +00:00
|
|
|
// Feature: Highlight Related
|
2021-06-22 17:39:59 +00:00
|
|
|
//
|
2021-06-23 16:11:48 +00:00
|
|
|
// Highlights constructs related to the thing under the cursor:
|
|
|
|
// - if on an identifier, highlights all references to that identifier in the current file
|
|
|
|
// - if on an `async` or `await token, highlights all yield points for that async context
|
|
|
|
// - if on a `return` token, `?` character or `->` return type arrow, highlights all exit points for that context
|
2021-06-24 18:57:02 +00:00
|
|
|
// - if on a `break`, `loop`, `while` or `for` token, highlights all break points for that loop or block context
|
2021-06-23 12:56:40 +00:00
|
|
|
pub(crate) fn highlight_related(
|
2021-06-22 17:39:59 +00:00
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
position: FilePosition,
|
2021-06-23 23:32:56 +00:00
|
|
|
) -> Option<Vec<HighlightedRange>> {
|
|
|
|
let _p = profile::span("highlight_related");
|
2021-06-22 17:39:59 +00:00
|
|
|
let syntax = sema.parse(position.file_id).syntax().clone();
|
2021-06-23 12:56:40 +00:00
|
|
|
|
|
|
|
let token = pick_best_token(syntax.token_at_offset(position.offset), |kind| match kind {
|
2021-06-23 23:32:56 +00:00
|
|
|
T![?] => 2, // prefer `?` when the cursor is sandwiched like `await$0?`
|
2021-06-24 18:57:02 +00:00
|
|
|
T![await]
|
|
|
|
| T![async]
|
|
|
|
| T![return]
|
|
|
|
| T![break]
|
|
|
|
| T![loop]
|
|
|
|
| T![for]
|
|
|
|
| T![while]
|
|
|
|
| T![->] => 1,
|
2021-06-23 12:56:40 +00:00
|
|
|
_ => 0,
|
|
|
|
})?;
|
|
|
|
|
|
|
|
match token.kind() {
|
2021-06-24 14:50:56 +00:00
|
|
|
T![return] | T![?] | T![->] => highlight_exit_points(sema, token),
|
2021-06-23 23:32:56 +00:00
|
|
|
T![await] | T![async] => highlight_yield_points(token),
|
2021-06-24 18:57:02 +00:00
|
|
|
T![break] | T![loop] | T![for] | T![while] => highlight_break_points(token),
|
2021-06-23 12:56:40 +00:00
|
|
|
_ => highlight_references(sema, &syntax, position),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-23 14:43:53 +00:00
|
|
|
fn highlight_references(
|
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
syntax: &SyntaxNode,
|
|
|
|
FilePosition { offset, file_id }: FilePosition,
|
2021-06-23 23:32:56 +00:00
|
|
|
) -> Option<Vec<HighlightedRange>> {
|
2021-06-23 14:43:53 +00:00
|
|
|
let def = references::find_def(sema, syntax, offset)?;
|
|
|
|
let usages = def.usages(sema).set_scope(Some(SearchScope::single_file(file_id))).all();
|
|
|
|
|
|
|
|
let declaration = match def {
|
|
|
|
Definition::ModuleDef(hir::ModuleDef::Module(module)) => {
|
|
|
|
Some(NavigationTarget::from_module_to_decl(sema.db, module))
|
|
|
|
}
|
|
|
|
def => def.try_to_nav(sema.db),
|
|
|
|
}
|
|
|
|
.filter(|decl| decl.file_id == file_id)
|
|
|
|
.and_then(|decl| {
|
|
|
|
let range = decl.focus_range?;
|
|
|
|
let access = references::decl_access(&def, syntax, range);
|
2021-06-23 23:32:56 +00:00
|
|
|
Some(HighlightedRange { range, access })
|
2021-06-23 14:43:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
let file_refs = usages.references.get(&file_id).map_or(&[][..], Vec::as_slice);
|
|
|
|
let mut res = Vec::with_capacity(file_refs.len() + 1);
|
|
|
|
res.extend(declaration);
|
|
|
|
res.extend(
|
|
|
|
file_refs
|
|
|
|
.iter()
|
2021-06-23 23:32:56 +00:00
|
|
|
.map(|&FileReference { access, range, .. }| HighlightedRange { range, access }),
|
2021-06-23 14:43:53 +00:00
|
|
|
);
|
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
|
2021-06-23 15:21:47 +00:00
|
|
|
fn highlight_exit_points(
|
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
token: SyntaxToken,
|
2021-06-23 23:32:56 +00:00
|
|
|
) -> Option<Vec<HighlightedRange>> {
|
2021-06-23 15:21:47 +00:00
|
|
|
fn hl(
|
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
body: Option<ast::Expr>,
|
2021-06-23 23:32:56 +00:00
|
|
|
) -> Option<Vec<HighlightedRange>> {
|
2021-06-23 14:43:53 +00:00
|
|
|
let mut highlights = Vec::new();
|
|
|
|
let body = body?;
|
2021-06-24 15:19:27 +00:00
|
|
|
walk(&body, &mut |expr| match expr {
|
|
|
|
ast::Expr::ReturnExpr(expr) => {
|
|
|
|
if let Some(token) = expr.return_token() {
|
|
|
|
highlights.push(HighlightedRange { access: None, range: token.text_range() });
|
2021-06-24 14:50:56 +00:00
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
}
|
|
|
|
ast::Expr::TryExpr(try_) => {
|
|
|
|
if let Some(token) = try_.question_mark_token() {
|
|
|
|
highlights.push(HighlightedRange { access: None, range: token.text_range() });
|
2021-06-24 14:50:56 +00:00
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
}
|
|
|
|
ast::Expr::MethodCallExpr(_) | ast::Expr::CallExpr(_) | ast::Expr::MacroCall(_) => {
|
|
|
|
if sema.type_of_expr(&expr).map_or(false, |ty| ty.is_never()) {
|
|
|
|
highlights
|
|
|
|
.push(HighlightedRange { access: None, range: expr.syntax().text_range() });
|
2021-06-23 14:43:53 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
_ => (),
|
2021-06-23 14:43:53 +00:00
|
|
|
});
|
|
|
|
let tail = match body {
|
|
|
|
ast::Expr::BlockExpr(b) => b.tail_expr(),
|
|
|
|
e => Some(e),
|
|
|
|
};
|
2021-06-24 14:50:56 +00:00
|
|
|
|
2021-06-23 14:43:53 +00:00
|
|
|
if let Some(tail) = tail {
|
2021-06-24 15:19:27 +00:00
|
|
|
for_each_inner_tail(&tail, &mut |tail| {
|
2021-06-24 18:57:02 +00:00
|
|
|
let range = match tail {
|
|
|
|
ast::Expr::BreakExpr(b) => b
|
|
|
|
.break_token()
|
|
|
|
.map_or_else(|| tail.syntax().text_range(), |tok| tok.text_range()),
|
|
|
|
_ => tail.syntax().text_range(),
|
|
|
|
};
|
|
|
|
highlights.push(HighlightedRange { access: None, range })
|
2021-06-24 15:19:27 +00:00
|
|
|
});
|
2021-06-23 14:43:53 +00:00
|
|
|
}
|
|
|
|
Some(highlights)
|
|
|
|
}
|
|
|
|
for anc in token.ancestors() {
|
|
|
|
return match_ast! {
|
|
|
|
match anc {
|
2021-06-23 15:21:47 +00:00
|
|
|
ast::Fn(fn_) => hl(sema, fn_.body().map(ast::Expr::BlockExpr)),
|
|
|
|
ast::ClosureExpr(closure) => hl(sema, closure.body()),
|
2021-06-24 14:50:56 +00:00
|
|
|
ast::EffectExpr(effect) => if matches!(effect.effect(), ast::Effect::Async(_) | ast::Effect::Try(_)| ast::Effect::Const(_)) {
|
2021-06-23 15:21:47 +00:00
|
|
|
hl(sema, effect.block_expr().map(ast::Expr::BlockExpr))
|
2021-06-23 14:43:53 +00:00
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
_ => continue,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-06-23 12:56:40 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2021-06-24 18:57:02 +00:00
|
|
|
fn highlight_break_points(token: SyntaxToken) -> Option<Vec<HighlightedRange>> {
|
|
|
|
fn hl(
|
|
|
|
token: Option<SyntaxToken>,
|
|
|
|
label: Option<ast::Label>,
|
|
|
|
body: Option<ast::BlockExpr>,
|
|
|
|
) -> Option<Vec<HighlightedRange>> {
|
|
|
|
let mut highlights = Vec::new();
|
|
|
|
let range = cover_range(
|
|
|
|
token.map(|tok| tok.text_range()),
|
|
|
|
label.as_ref().map(|it| it.syntax().text_range()),
|
|
|
|
);
|
|
|
|
highlights.extend(range.map(|range| HighlightedRange { access: None, range }));
|
|
|
|
for_each_break(label, body, &mut |break_| {
|
|
|
|
let range = cover_range(
|
|
|
|
break_.break_token().map(|it| it.text_range()),
|
|
|
|
break_.lifetime().map(|it| it.syntax().text_range()),
|
|
|
|
);
|
|
|
|
highlights.extend(range.map(|range| HighlightedRange { access: None, range }));
|
|
|
|
});
|
|
|
|
Some(highlights)
|
|
|
|
}
|
|
|
|
let parent = token.parent()?;
|
|
|
|
let lbl = match_ast! {
|
|
|
|
match parent {
|
|
|
|
ast::BreakExpr(b) => b.lifetime(),
|
|
|
|
ast::LoopExpr(l) => l.label().and_then(|it| it.lifetime()),
|
|
|
|
ast::ForExpr(f) => f.label().and_then(|it| it.lifetime()),
|
|
|
|
ast::WhileExpr(w) => w.label().and_then(|it| it.lifetime()),
|
|
|
|
ast::EffectExpr(b) => Some(b.label().and_then(|it| it.lifetime())?),
|
|
|
|
_ => return None,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let lbl = lbl.as_ref();
|
|
|
|
let label_matches = |def_lbl: Option<ast::Label>| match lbl {
|
|
|
|
Some(lbl) => {
|
|
|
|
Some(lbl.text()) == def_lbl.and_then(|it| it.lifetime()).as_ref().map(|it| it.text())
|
|
|
|
}
|
|
|
|
None => true,
|
|
|
|
};
|
|
|
|
for anc in token.ancestors().flat_map(ast::Expr::cast) {
|
|
|
|
return match anc {
|
|
|
|
ast::Expr::LoopExpr(l) if label_matches(l.label()) => {
|
|
|
|
hl(l.loop_token(), l.label(), l.loop_body())
|
|
|
|
}
|
|
|
|
ast::Expr::ForExpr(f) if label_matches(f.label()) => {
|
|
|
|
hl(f.for_token(), f.label(), f.loop_body())
|
|
|
|
}
|
|
|
|
ast::Expr::WhileExpr(w) if label_matches(w.label()) => {
|
|
|
|
hl(w.while_token(), w.label(), w.loop_body())
|
|
|
|
}
|
|
|
|
ast::Expr::EffectExpr(e) if e.label().is_some() && label_matches(e.label()) => {
|
|
|
|
hl(None, e.label(), e.block_expr())
|
|
|
|
}
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2021-06-23 23:32:56 +00:00
|
|
|
fn highlight_yield_points(token: SyntaxToken) -> Option<Vec<HighlightedRange>> {
|
2021-06-23 14:16:32 +00:00
|
|
|
fn hl(
|
|
|
|
async_token: Option<SyntaxToken>,
|
2021-06-23 15:05:00 +00:00
|
|
|
body: Option<ast::Expr>,
|
2021-06-23 23:32:56 +00:00
|
|
|
) -> Option<Vec<HighlightedRange>> {
|
2021-06-23 14:16:32 +00:00
|
|
|
let mut highlights = Vec::new();
|
2021-06-23 23:32:56 +00:00
|
|
|
highlights.push(HighlightedRange { access: None, range: async_token?.text_range() });
|
2021-06-23 14:16:32 +00:00
|
|
|
if let Some(body) = body {
|
2021-06-24 14:50:56 +00:00
|
|
|
walk(&body, &mut |expr| {
|
2021-06-24 15:19:27 +00:00
|
|
|
if let ast::Expr::AwaitExpr(expr) = expr {
|
|
|
|
if let Some(token) = expr.await_token() {
|
|
|
|
highlights
|
|
|
|
.push(HighlightedRange { access: None, range: token.text_range() });
|
2021-06-23 14:16:32 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-23 14:43:53 +00:00
|
|
|
});
|
2021-06-23 14:16:32 +00:00
|
|
|
}
|
|
|
|
Some(highlights)
|
|
|
|
}
|
|
|
|
for anc in token.ancestors() {
|
|
|
|
return match_ast! {
|
|
|
|
match anc {
|
2021-06-23 15:05:00 +00:00
|
|
|
ast::Fn(fn_) => hl(fn_.async_token(), fn_.body().map(ast::Expr::BlockExpr)),
|
|
|
|
ast::EffectExpr(effect) => hl(effect.async_token(), effect.block_expr().map(ast::Expr::BlockExpr)),
|
|
|
|
ast::ClosureExpr(closure) => hl(closure.async_token(), closure.body()),
|
2021-06-23 14:16:32 +00:00
|
|
|
_ => continue,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-06-23 12:56:40 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2021-06-24 15:19:27 +00:00
|
|
|
/// Preorder walk all the expression's child expressions
|
|
|
|
fn walk(expr: &ast::Expr, cb: &mut dyn FnMut(ast::Expr)) {
|
2021-06-23 15:05:00 +00:00
|
|
|
let mut preorder = expr.syntax().preorder();
|
2021-06-23 14:43:53 +00:00
|
|
|
while let Some(event) = preorder.next() {
|
|
|
|
let node = match event {
|
|
|
|
WalkEvent::Enter(node) => node,
|
|
|
|
WalkEvent::Leave(_) => continue,
|
|
|
|
};
|
2021-06-24 14:50:56 +00:00
|
|
|
match ast::Stmt::cast(node.clone()) {
|
2021-06-24 15:19:27 +00:00
|
|
|
// recursively walk the initializer, skipping potential const pat expressions
|
|
|
|
// lets statements aren't usually nested too deeply so this is fine to recurse on
|
2021-06-24 14:50:56 +00:00
|
|
|
Some(ast::Stmt::LetStmt(l)) => {
|
|
|
|
if let Some(expr) = l.initializer() {
|
|
|
|
walk(&expr, cb);
|
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
preorder.skip_subtree();
|
2021-06-24 14:50:56 +00:00
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
// Don't skip subtree since we want to process the expression child next
|
|
|
|
Some(ast::Stmt::ExprStmt(_)) => (),
|
2021-06-24 14:50:56 +00:00
|
|
|
// skip inner items which might have their own expressions
|
2021-06-24 15:19:27 +00:00
|
|
|
Some(ast::Stmt::Item(_)) => preorder.skip_subtree(),
|
2021-06-24 14:50:56 +00:00
|
|
|
None => {
|
|
|
|
if let Some(expr) = ast::Expr::cast(node) {
|
2021-06-24 15:19:27 +00:00
|
|
|
let is_different_context = match &expr {
|
|
|
|
ast::Expr::EffectExpr(effect) => {
|
|
|
|
matches!(
|
|
|
|
effect.effect(),
|
|
|
|
ast::Effect::Async(_) | ast::Effect::Try(_) | ast::Effect::Const(_)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
ast::Expr::ClosureExpr(__) => true,
|
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
cb(expr);
|
|
|
|
if is_different_context {
|
|
|
|
preorder.skip_subtree();
|
2021-06-24 14:50:56 +00:00
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
} else {
|
|
|
|
preorder.skip_subtree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: doesn't account for labeled breaks in labeled blocks
|
|
|
|
fn for_each_inner_tail(expr: &ast::Expr, cb: &mut dyn FnMut(&ast::Expr)) {
|
|
|
|
match expr {
|
|
|
|
ast::Expr::BlockExpr(b) => {
|
|
|
|
if let Some(e) = b.tail_expr() {
|
|
|
|
for_each_inner_tail(&e, cb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::Expr::EffectExpr(e) => match e.effect() {
|
|
|
|
ast::Effect::Label(_) | ast::Effect::Unsafe(_) => {
|
|
|
|
if let Some(e) = e.block_expr().and_then(|b| b.tail_expr()) {
|
|
|
|
for_each_inner_tail(&e, cb);
|
2021-06-24 14:50:56 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
ast::Effect::Async(_) | ast::Effect::Try(_) | ast::Effect::Const(_) => cb(expr),
|
|
|
|
},
|
|
|
|
ast::Expr::IfExpr(if_) => {
|
|
|
|
if_.blocks().for_each(|block| for_each_inner_tail(&ast::Expr::BlockExpr(block), cb))
|
|
|
|
}
|
2021-06-24 18:57:02 +00:00
|
|
|
ast::Expr::LoopExpr(l) => {
|
|
|
|
for_each_break(l.label(), l.loop_body(), &mut |b| cb(&ast::Expr::BreakExpr(b)))
|
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
ast::Expr::MatchExpr(m) => {
|
|
|
|
if let Some(arms) = m.match_arm_list() {
|
|
|
|
arms.arms().filter_map(|arm| arm.expr()).for_each(|e| for_each_inner_tail(&e, cb));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::Expr::ArrayExpr(_)
|
|
|
|
| ast::Expr::AwaitExpr(_)
|
|
|
|
| ast::Expr::BinExpr(_)
|
|
|
|
| ast::Expr::BoxExpr(_)
|
|
|
|
| ast::Expr::BreakExpr(_)
|
|
|
|
| ast::Expr::CallExpr(_)
|
|
|
|
| ast::Expr::CastExpr(_)
|
|
|
|
| ast::Expr::ClosureExpr(_)
|
|
|
|
| ast::Expr::ContinueExpr(_)
|
|
|
|
| ast::Expr::FieldExpr(_)
|
|
|
|
| ast::Expr::ForExpr(_)
|
|
|
|
| ast::Expr::IndexExpr(_)
|
|
|
|
| ast::Expr::Literal(_)
|
|
|
|
| ast::Expr::MacroCall(_)
|
|
|
|
| ast::Expr::MacroStmts(_)
|
|
|
|
| ast::Expr::MethodCallExpr(_)
|
|
|
|
| ast::Expr::ParenExpr(_)
|
|
|
|
| ast::Expr::PathExpr(_)
|
|
|
|
| ast::Expr::PrefixExpr(_)
|
|
|
|
| ast::Expr::RangeExpr(_)
|
|
|
|
| ast::Expr::RecordExpr(_)
|
|
|
|
| ast::Expr::RefExpr(_)
|
|
|
|
| ast::Expr::ReturnExpr(_)
|
|
|
|
| ast::Expr::TryExpr(_)
|
|
|
|
| ast::Expr::TupleExpr(_)
|
|
|
|
| ast::Expr::WhileExpr(_)
|
|
|
|
| ast::Expr::YieldExpr(_) => cb(expr),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-24 18:57:02 +00:00
|
|
|
fn for_each_break(
|
|
|
|
label: Option<ast::Label>,
|
|
|
|
body: Option<ast::BlockExpr>,
|
|
|
|
cb: &mut dyn FnMut(ast::BreakExpr),
|
|
|
|
) {
|
|
|
|
let label = label.and_then(|lbl| lbl.lifetime());
|
2021-06-24 15:19:27 +00:00
|
|
|
let mut depth = 0;
|
2021-06-24 18:57:02 +00:00
|
|
|
if let Some(b) = body {
|
2021-06-24 15:19:27 +00:00
|
|
|
let preorder = &mut b.syntax().preorder();
|
|
|
|
let ev_as_expr = |ev| match ev {
|
|
|
|
WalkEvent::Enter(it) => Some(WalkEvent::Enter(ast::Expr::cast(it)?)),
|
|
|
|
WalkEvent::Leave(it) => Some(WalkEvent::Leave(ast::Expr::cast(it)?)),
|
|
|
|
};
|
|
|
|
let eq_label = |lt: Option<ast::Lifetime>| {
|
|
|
|
lt.zip(label.as_ref()).map_or(false, |(lt, lbl)| lt.text() == lbl.text())
|
|
|
|
};
|
|
|
|
while let Some(node) = preorder.find_map(ev_as_expr) {
|
|
|
|
match node {
|
2021-06-24 18:57:02 +00:00
|
|
|
WalkEvent::Enter(expr) => match expr {
|
2021-06-24 15:19:27 +00:00
|
|
|
ast::Expr::LoopExpr(_) | ast::Expr::WhileExpr(_) | ast::Expr::ForExpr(_) => {
|
|
|
|
depth += 1
|
|
|
|
}
|
|
|
|
ast::Expr::EffectExpr(e) if e.label().is_some() => depth += 1,
|
|
|
|
ast::Expr::BreakExpr(b) if depth == 0 || eq_label(b.lifetime()) => {
|
2021-06-24 18:57:02 +00:00
|
|
|
cb(b);
|
2021-06-24 15:19:27 +00:00
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
WalkEvent::Leave(expr) => match expr {
|
|
|
|
ast::Expr::LoopExpr(_) | ast::Expr::WhileExpr(_) | ast::Expr::ForExpr(_) => {
|
|
|
|
depth -= 1
|
|
|
|
}
|
|
|
|
ast::Expr::EffectExpr(e) if e.label().is_some() => depth -= 1,
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
}
|
2021-06-22 17:39:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-24 18:57:02 +00:00
|
|
|
fn cover_range(r0: Option<TextRange>, r1: Option<TextRange>) -> Option<TextRange> {
|
|
|
|
match (r0, r1) {
|
|
|
|
(Some(r0), Some(r1)) => Some(r0.cover(r1)),
|
|
|
|
(Some(range), None) => Some(range),
|
|
|
|
(None, Some(range)) => Some(range),
|
|
|
|
(None, None) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 17:39:59 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::fixture;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
fn check(ra_fixture: &str) {
|
|
|
|
let (analysis, pos, annotations) = fixture::annotations(ra_fixture);
|
2021-06-23 12:56:40 +00:00
|
|
|
let hls = analysis.highlight_related(pos).unwrap().unwrap();
|
2021-06-22 17:39:59 +00:00
|
|
|
|
|
|
|
let mut expected = annotations
|
|
|
|
.into_iter()
|
|
|
|
.map(|(r, access)| (r.range, (!access.is_empty()).then(|| access)))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let mut actual = hls
|
|
|
|
.into_iter()
|
|
|
|
.map(|hl| {
|
|
|
|
(
|
|
|
|
hl.range,
|
|
|
|
hl.access.map(|it| {
|
|
|
|
match it {
|
|
|
|
ReferenceAccess::Read => "read",
|
|
|
|
ReferenceAccess::Write => "write",
|
|
|
|
}
|
|
|
|
.to_string()
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
actual.sort_by_key(|(range, _)| range.start());
|
|
|
|
expected.sort_by_key(|(range, _)| range.start());
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_module() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
|
|
|
mod foo$0;
|
|
|
|
// ^^^
|
|
|
|
//- /foo.rs
|
|
|
|
struct Foo;
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_self_in_crate_root() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
use self$0;
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_self_in_module() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
|
|
|
mod foo;
|
|
|
|
//- /foo.rs
|
|
|
|
use self$0;
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_local() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let mut bar = 3;
|
|
|
|
// ^^^ write
|
|
|
|
bar$0;
|
|
|
|
// ^^^ read
|
|
|
|
}
|
2021-06-23 14:16:32 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_yield_points() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
pub async fn foo() {
|
|
|
|
// ^^^^^
|
|
|
|
let x = foo()
|
|
|
|
.await$0
|
|
|
|
// ^^^^^
|
|
|
|
.await;
|
|
|
|
// ^^^^^
|
|
|
|
|| { 0.await };
|
|
|
|
(async { 0.await }).await
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_yield_points2() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
pub async$0 fn foo() {
|
|
|
|
// ^^^^^
|
|
|
|
let x = foo()
|
|
|
|
.await
|
|
|
|
// ^^^^^
|
|
|
|
.await;
|
|
|
|
// ^^^^^
|
|
|
|
|| { 0.await };
|
|
|
|
(async { 0.await }).await
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_yield_nested_fn() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
async fn foo() {
|
|
|
|
async fn foo2() {
|
|
|
|
// ^^^^^
|
|
|
|
async fn foo3() {
|
|
|
|
0.await
|
|
|
|
}
|
|
|
|
0.await$0
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
0.await
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_yield_nested_async_blocks() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
async fn foo() {
|
|
|
|
(async {
|
|
|
|
// ^^^^^
|
|
|
|
(async {
|
|
|
|
0.await
|
|
|
|
}).await$0 }
|
|
|
|
// ^^^^^
|
|
|
|
).await;
|
|
|
|
}
|
2021-06-23 14:43:53 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_exit_points() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
if true {
|
|
|
|
return$0 0;
|
|
|
|
// ^^^^^^
|
|
|
|
}
|
|
|
|
|
|
|
|
0?;
|
|
|
|
// ^
|
|
|
|
0xDEAD_BEEF
|
|
|
|
// ^^^^^^^^^^^
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_exit_points2() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() ->$0 u32 {
|
|
|
|
if true {
|
|
|
|
return 0;
|
|
|
|
// ^^^^^^
|
|
|
|
}
|
|
|
|
|
|
|
|
0?;
|
|
|
|
// ^
|
|
|
|
0xDEAD_BEEF
|
|
|
|
// ^^^^^^^^^^^
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_prefer_ref_over_tail_exit() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
// ^^^
|
|
|
|
if true {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
0?;
|
|
|
|
|
|
|
|
foo$0()
|
|
|
|
// ^^^
|
|
|
|
}
|
2021-06-23 15:21:47 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_never_call_is_exit_point() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
struct Never;
|
|
|
|
impl Never {
|
|
|
|
fn never(self) -> ! { loop {} }
|
|
|
|
}
|
|
|
|
macro_rules! never {
|
|
|
|
() => { never() }
|
|
|
|
}
|
|
|
|
fn never() -> ! { loop {} }
|
|
|
|
fn foo() ->$0 u32 {
|
|
|
|
never();
|
|
|
|
// ^^^^^^^
|
|
|
|
never!();
|
2021-06-24 14:50:56 +00:00
|
|
|
// FIXME sema doesn't give us types for macrocalls
|
2021-06-23 15:21:47 +00:00
|
|
|
|
|
|
|
Never.never();
|
|
|
|
// ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
0
|
|
|
|
// ^
|
|
|
|
}
|
2021-06-24 15:19:27 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_inner_tail_exit_points() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() ->$0 u32 {
|
|
|
|
if true {
|
|
|
|
unsafe {
|
|
|
|
return 5;
|
|
|
|
// ^^^^^^
|
|
|
|
5
|
|
|
|
// ^
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
match 5 {
|
|
|
|
6 => 100,
|
|
|
|
// ^^^
|
|
|
|
7 => loop {
|
|
|
|
break 5;
|
2021-06-24 18:57:02 +00:00
|
|
|
// ^^^^^
|
2021-06-24 15:19:27 +00:00
|
|
|
}
|
|
|
|
8 => 'a: loop {
|
|
|
|
'b: loop {
|
|
|
|
break 'a 5;
|
2021-06-24 18:57:02 +00:00
|
|
|
// ^^^^^
|
2021-06-24 15:19:27 +00:00
|
|
|
break 'b 5;
|
|
|
|
break 5;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
//
|
|
|
|
_ => 500,
|
|
|
|
// ^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-24 18:57:02 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_break_loop() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
'outer: loop {
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
'inner: loop {
|
|
|
|
break;
|
|
|
|
'innermost: loop {
|
|
|
|
break 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break 'inner;
|
|
|
|
}
|
|
|
|
break$0 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_break_for() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
'outer: for _ in () {
|
|
|
|
// ^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
'inner: for _ in () {
|
|
|
|
break;
|
|
|
|
'innermost: for _ in () {
|
|
|
|
break 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break 'inner;
|
|
|
|
}
|
|
|
|
break$0 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_break_while() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
'outer: while true {
|
|
|
|
// ^^^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
'inner: while true {
|
|
|
|
break;
|
|
|
|
'innermost: while true {
|
|
|
|
break 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break 'inner;
|
|
|
|
}
|
|
|
|
break$0 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_break_labeled_block() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
'outer: {
|
|
|
|
// ^^^^^^^
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
'inner: {
|
|
|
|
break;
|
|
|
|
'innermost: {
|
|
|
|
break 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break 'inner;
|
|
|
|
}
|
|
|
|
break$0 'outer;
|
|
|
|
// ^^^^^^^^^^^^
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_break_unlabeled_loop() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
loop {
|
|
|
|
// ^^^^
|
|
|
|
break$0;
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hl_break_unlabeled_block_in_loop() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
loop {
|
|
|
|
// ^^^^
|
|
|
|
{
|
|
|
|
break$0;
|
|
|
|
// ^^^^^
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-22 17:39:59 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|