mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
More Source
This commit is contained in:
parent
614c034ffc
commit
6d8ca870b3
1 changed files with 18 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
||||||
//! FIXME: write short doc here
|
//! FIXME: write short doc here
|
||||||
|
|
||||||
use hir::{AssocItem, Either, FieldSource, HasSource, ModuleSource};
|
use hir::{AssocItem, Either, FieldSource, HasSource, ModuleSource, Source};
|
||||||
use ra_db::{FileId, SourceDatabase};
|
use ra_db::{FileId, SourceDatabase};
|
||||||
use ra_syntax::{
|
use ra_syntax::{
|
||||||
ast::{self, DocCommentsOwner, NameOwner},
|
ast::{self, DocCommentsOwner, NameOwner},
|
||||||
|
@ -79,7 +79,8 @@ impl NavigationTarget {
|
||||||
pub(crate) fn from_module_to_decl(db: &RootDatabase, module: hir::Module) -> NavigationTarget {
|
pub(crate) fn from_module_to_decl(db: &RootDatabase, module: hir::Module) -> NavigationTarget {
|
||||||
let name = module.name(db).map(|it| it.to_string().into()).unwrap_or_default();
|
let name = module.name(db).map(|it| it.to_string().into()).unwrap_or_default();
|
||||||
if let Some(src) = module.declaration_source(db) {
|
if let Some(src) = module.declaration_source(db) {
|
||||||
let (file_id, text_range) = find_range_from_node(db, src.file_id, src.ast.syntax());
|
let (file_id, text_range) =
|
||||||
|
find_range_from_node(db, src.as_ref().map(|it| it.syntax()));
|
||||||
return NavigationTarget::from_syntax(
|
return NavigationTarget::from_syntax(
|
||||||
file_id,
|
file_id,
|
||||||
name,
|
name,
|
||||||
|
@ -147,8 +148,9 @@ impl NavigationTarget {
|
||||||
) -> NavigationTarget {
|
) -> NavigationTarget {
|
||||||
//FIXME: use `_` instead of empty string
|
//FIXME: use `_` instead of empty string
|
||||||
let name = node.name().map(|it| it.text().clone()).unwrap_or_default();
|
let name = node.name().map(|it| it.text().clone()).unwrap_or_default();
|
||||||
let focus_range = node.name().map(|it| find_range_from_node(db, file_id, it.syntax()).1);
|
let focus_range =
|
||||||
let (file_id, full_range) = find_range_from_node(db, file_id, node.syntax());
|
node.name().map(|it| find_range_from_node(db, Source::new(file_id, it.syntax())).1);
|
||||||
|
let (file_id, full_range) = find_range_from_node(db, Source::new(file_id, node.syntax()));
|
||||||
|
|
||||||
NavigationTarget::from_syntax(
|
NavigationTarget::from_syntax(
|
||||||
file_id,
|
file_id,
|
||||||
|
@ -230,9 +232,9 @@ impl ToNav for hir::Module {
|
||||||
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
||||||
let src = self.definition_source(db);
|
let src = self.definition_source(db);
|
||||||
let name = self.name(db).map(|it| it.to_string().into()).unwrap_or_default();
|
let name = self.name(db).map(|it| it.to_string().into()).unwrap_or_default();
|
||||||
match src.ast {
|
match &src.ast {
|
||||||
ModuleSource::SourceFile(node) => {
|
ModuleSource::SourceFile(node) => {
|
||||||
let (file_id, text_range) = find_range_from_node(db, src.file_id, node.syntax());
|
let (file_id, text_range) = find_range_from_node(db, src.with_ast(node.syntax()));
|
||||||
|
|
||||||
NavigationTarget::from_syntax(
|
NavigationTarget::from_syntax(
|
||||||
file_id,
|
file_id,
|
||||||
|
@ -245,7 +247,7 @@ impl ToNav for hir::Module {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
ModuleSource::Module(node) => {
|
ModuleSource::Module(node) => {
|
||||||
let (file_id, text_range) = find_range_from_node(db, src.file_id, node.syntax());
|
let (file_id, text_range) = find_range_from_node(db, src.with_ast(node.syntax()));
|
||||||
|
|
||||||
NavigationTarget::from_syntax(
|
NavigationTarget::from_syntax(
|
||||||
file_id,
|
file_id,
|
||||||
|
@ -264,7 +266,7 @@ impl ToNav for hir::Module {
|
||||||
impl ToNav for hir::ImplBlock {
|
impl ToNav for hir::ImplBlock {
|
||||||
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
||||||
let src = self.source(db);
|
let src = self.source(db);
|
||||||
let (file_id, text_range) = find_range_from_node(db, src.file_id, src.ast.syntax());
|
let (file_id, text_range) = find_range_from_node(db, src.as_ref().map(|it| it.syntax()));
|
||||||
|
|
||||||
NavigationTarget::from_syntax(
|
NavigationTarget::from_syntax(
|
||||||
file_id,
|
file_id,
|
||||||
|
@ -282,16 +284,16 @@ impl ToNav for hir::StructField {
|
||||||
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
||||||
let src = self.source(db);
|
let src = self.source(db);
|
||||||
|
|
||||||
match src.ast {
|
match &src.ast {
|
||||||
FieldSource::Named(it) => NavigationTarget::from_named(
|
FieldSource::Named(it) => NavigationTarget::from_named(
|
||||||
db,
|
db,
|
||||||
src.file_id,
|
src.file_id,
|
||||||
&it,
|
it,
|
||||||
it.doc_comment_text(),
|
it.doc_comment_text(),
|
||||||
it.short_label(),
|
it.short_label(),
|
||||||
),
|
),
|
||||||
FieldSource::Pos(it) => {
|
FieldSource::Pos(it) => {
|
||||||
let (file_id, text_range) = find_range_from_node(db, src.file_id, it.syntax());
|
let (file_id, text_range) = find_range_from_node(db, src.with_ast(it.syntax()));
|
||||||
NavigationTarget::from_syntax(
|
NavigationTarget::from_syntax(
|
||||||
file_id,
|
file_id,
|
||||||
"".into(),
|
"".into(),
|
||||||
|
@ -360,16 +362,13 @@ impl ToNav for hir::Local {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn find_range_from_node(
|
fn find_range_from_node(db: &RootDatabase, node: Source<&SyntaxNode>) -> (FileId, TextRange) {
|
||||||
db: &RootDatabase,
|
let text_range = node.ast.text_range();
|
||||||
src: hir::HirFileId,
|
let (file_id, text_range) = node
|
||||||
node: &SyntaxNode,
|
.file_id
|
||||||
) -> (FileId, TextRange) {
|
|
||||||
let text_range = node.text_range();
|
|
||||||
let (file_id, text_range) = src
|
|
||||||
.expansion_info(db)
|
.expansion_info(db)
|
||||||
.and_then(|expansion_info| expansion_info.find_range(text_range))
|
.and_then(|expansion_info| expansion_info.find_range(text_range))
|
||||||
.unwrap_or((src, text_range));
|
.unwrap_or((node.file_id, text_range));
|
||||||
|
|
||||||
// FIXME: handle recursive macro generated macro
|
// FIXME: handle recursive macro generated macro
|
||||||
(file_id.original_file(db), text_range)
|
(file_id.original_file(db), text_range)
|
||||||
|
|
Loading…
Reference in a new issue