Fix faulty assertion when extracting function with macro call

This commit is contained in:
Brandon 2021-04-07 21:43:38 -07:00
parent 72781085bb
commit 1ccfd0ceda

View file

@ -787,7 +787,7 @@ impl HasTokenAtOffset for SyntaxNode {
}
}
/// find relevant `ast::PathExpr` for reference
/// find relevant `ast::Expr` for reference
///
/// # Preconditions
///
@ -804,7 +804,6 @@ fn path_element_of_reference(
stdx::never!(false, "cannot find path parent of variable usage: {:?}", token);
None
})?;
stdx::always!(matches!(path, ast::Expr::PathExpr(_)));
Some(path)
}