mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Add missing cancellation point
This commit is contained in:
parent
bc0a378070
commit
b9ef6cf295
1 changed files with 1 additions and 0 deletions
|
@ -321,6 +321,7 @@ impl<'db> SemanticsImpl<'db> {
|
||||||
let sa = self.analyze2(parent.as_ref(), None);
|
let sa = self.analyze2(parent.as_ref(), None);
|
||||||
|
|
||||||
let token = successors(Some(parent.with_value(token)), |token| {
|
let token = successors(Some(parent.with_value(token)), |token| {
|
||||||
|
self.db.check_canceled();
|
||||||
let macro_call = token.value.ancestors().find_map(ast::MacroCall::cast)?;
|
let macro_call = token.value.ancestors().find_map(ast::MacroCall::cast)?;
|
||||||
let tt = macro_call.token_tree()?;
|
let tt = macro_call.token_tree()?;
|
||||||
if !tt.syntax().text_range().contains_range(token.value.text_range()) {
|
if !tt.syntax().text_range().contains_range(token.value.text_range()) {
|
||||||
|
|
Loading…
Reference in a new issue