Small refactoring + docs
This commit is contained in:
parent
a2a999f035
commit
35abf139a2
@ -15,7 +15,7 @@ use rustc_serialize::json::as_json;
|
|||||||
use external_data::*;
|
use external_data::*;
|
||||||
use data::{VariableKind, Visibility};
|
use data::{VariableKind, Visibility};
|
||||||
use dump::Dump;
|
use dump::Dump;
|
||||||
use json_dumper::id_from_def_id;
|
use id_from_def_id;
|
||||||
|
|
||||||
use rls_data::{Analysis, Import, ImportKind, Def, DefKind, CratePreludeData};
|
use rls_data::{Analysis, Import, ImportKind, Def, DefKind, CratePreludeData};
|
||||||
|
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
|
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
||||||
use rustc::hir::def_id::DefId;
|
|
||||||
use rustc_serialize::json::as_json;
|
use rustc_serialize::json::as_json;
|
||||||
|
|
||||||
use rls_data::{self, Id, Analysis, Import, ImportKind, Def, DefKind, Ref, RefKind, MacroRef,
|
use rls_data::{self, Id, Analysis, Import, ImportKind, Def, DefKind, Ref, RefKind, MacroRef,
|
||||||
@ -20,6 +19,7 @@ use rls_span::{Column, Row};
|
|||||||
use external_data::*;
|
use external_data::*;
|
||||||
use data::VariableKind;
|
use data::VariableKind;
|
||||||
use dump::Dump;
|
use dump::Dump;
|
||||||
|
use id_from_def_id;
|
||||||
|
|
||||||
pub struct JsonDumper<O: DumpOutput> {
|
pub struct JsonDumper<O: DumpOutput> {
|
||||||
result: Analysis,
|
result: Analysis,
|
||||||
@ -163,15 +163,6 @@ impl<'b, O: DumpOutput + 'b> Dump for JsonDumper<O> {
|
|||||||
// method, but not the supplied method). In both cases, we are currently
|
// method, but not the supplied method). In both cases, we are currently
|
||||||
// ignoring it.
|
// ignoring it.
|
||||||
|
|
||||||
// DefId::index is a newtype and so the JSON serialisation is ugly. Therefore
|
|
||||||
// we use our own Id which is the same, but without the newtype.
|
|
||||||
pub fn id_from_def_id(id: DefId) -> Id {
|
|
||||||
Id {
|
|
||||||
krate: id.krate.as_u32(),
|
|
||||||
index: id.index.as_u32(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Into<Import> for ExternCrateData {
|
impl Into<Import> for ExternCrateData {
|
||||||
fn into(self) -> Import {
|
fn into(self) -> Import {
|
||||||
Import {
|
Import {
|
||||||
|
@ -1026,6 +1026,20 @@ fn escape(s: String) -> String {
|
|||||||
|
|
||||||
// Helper function to determine if a span came from a
|
// Helper function to determine if a span came from a
|
||||||
// macro expansion or syntax extension.
|
// macro expansion or syntax extension.
|
||||||
pub fn generated_code(span: Span) -> bool {
|
fn generated_code(span: Span) -> bool {
|
||||||
span.ctxt != NO_EXPANSION || span == DUMMY_SP
|
span.ctxt != NO_EXPANSION || span == DUMMY_SP
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DefId::index is a newtype and so the JSON serialisation is ugly. Therefore
|
||||||
|
// we use our own Id which is the same, but without the newtype.
|
||||||
|
fn id_from_def_id(id: DefId) -> rls_data::Id {
|
||||||
|
rls_data::Id {
|
||||||
|
krate: id.krate.as_u32(),
|
||||||
|
index: id.index.as_u32(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn id_from_node_id(id: NodeId, scx: &SaveContext) -> rls_data::Id {
|
||||||
|
let def_id = scx.tcx.hir.local_def_id(id);
|
||||||
|
id_from_def_id(def_id)
|
||||||
|
}
|
||||||
|
@ -8,16 +8,38 @@
|
|||||||
// option. This file may not be copied, modified, or distributed
|
// option. This file may not be copied, modified, or distributed
|
||||||
// except according to those terms.
|
// except according to those terms.
|
||||||
|
|
||||||
// FIXME? None of these include visibility info.
|
// A signature is a string representation of an item's type signature, excluding
|
||||||
// Large outstanding things - where clauses, defs/refs for generics
|
// any body. It also includes ids for any defs or refs in the signature. For
|
||||||
// paresable - each sig ends with `;` of ` {}`
|
// example:
|
||||||
|
//
|
||||||
|
// ```
|
||||||
|
// fn foo(x: String) {
|
||||||
|
// println!("{}", x);
|
||||||
|
// }
|
||||||
|
// ```
|
||||||
|
// The signature string is something like "fn foo(x: String) {}" and the signature
|
||||||
|
// will have defs for `foo` and `x` and a ref for `String`.
|
||||||
|
//
|
||||||
|
// All signature text should parse in the correct context (i.e., in a module or
|
||||||
|
// impl, etc.). Clients may want to trim trailing `{}` or `;`. The text of a
|
||||||
|
// signature is not guaranteed to be stable (it may improve or change as the
|
||||||
|
// syntax changes, or whitespace or punctuation may change). It is also likely
|
||||||
|
// not to be pretty - no attempt is made to prettify the text. It is recommended
|
||||||
|
// that clients run the text through Rustfmt.
|
||||||
|
//
|
||||||
|
// This module generates Signatures for items by walking the AST and looking up
|
||||||
|
// references.
|
||||||
|
//
|
||||||
|
// Signatures do not include visibility info. I'm not sure if this is a feature
|
||||||
|
// or an ommission (FIXME).
|
||||||
|
//
|
||||||
|
// FIXME where clauses need implementing, defs/refs in generics are mostly missing.
|
||||||
|
|
||||||
use SaveContext;
|
use {SaveContext, id_from_def_id, id_from_node_id};
|
||||||
|
|
||||||
use rls_data::{Signature, SigElement, Id};
|
use rls_data::{Signature, SigElement};
|
||||||
|
|
||||||
use rustc::hir::def::Def;
|
use rustc::hir::def::Def;
|
||||||
use rustc::hir::def_id::DefId;
|
|
||||||
use syntax::ast::{self, NodeId};
|
use syntax::ast::{self, NodeId};
|
||||||
use syntax::print::pprust;
|
use syntax::print::pprust;
|
||||||
|
|
||||||
@ -26,19 +48,6 @@ pub fn item_signature(item: &ast::Item, scx: &SaveContext) -> Option<Signature>
|
|||||||
item.make(0, None, scx).ok()
|
item.make(0, None, scx).ok()
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO dup from json_dumper
|
|
||||||
fn id_from_def_id(id: DefId) -> Id {
|
|
||||||
Id {
|
|
||||||
krate: id.krate.as_u32(),
|
|
||||||
index: id.index.as_u32(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn id_from_node_id(id: NodeId, scx: &SaveContext) -> Id {
|
|
||||||
let def_id = scx.tcx.hir.local_def_id(id);
|
|
||||||
id_from_def_id(def_id)
|
|
||||||
}
|
|
||||||
|
|
||||||
type Result = ::std::result::Result<Signature, &'static str>;
|
type Result = ::std::result::Result<Signature, &'static str>;
|
||||||
|
|
||||||
trait Sig {
|
trait Sig {
|
||||||
|
Loading…
Reference in New Issue
Block a user