2020-03-15 23:30:50 +00:00
|
|
|
|
//! Logic for computing info that is displayed when the user hovers over any
|
|
|
|
|
//! source code items (e.g. function call, struct field, variable symbol...)
|
2019-09-30 08:58:53 +00:00
|
|
|
|
|
2020-03-05 23:02:14 +00:00
|
|
|
|
use hir::{
|
2020-03-08 13:26:57 +00:00
|
|
|
|
Adt, AsAssocItem, AssocItemContainer, FieldSource, HasSource, HirDisplay, ModuleDef,
|
|
|
|
|
ModuleSource, Semantics,
|
2020-03-05 23:02:14 +00:00
|
|
|
|
};
|
2020-03-08 13:26:57 +00:00
|
|
|
|
use ra_db::SourceDatabase;
|
2020-02-18 17:35:10 +00:00
|
|
|
|
use ra_ide_db::{
|
2020-03-03 17:54:39 +00:00
|
|
|
|
defs::{classify_name, classify_name_ref, Definition},
|
2020-02-18 17:35:10 +00:00
|
|
|
|
RootDatabase,
|
|
|
|
|
};
|
2019-01-08 19:33:36 +00:00
|
|
|
|
use ra_syntax::{
|
2019-06-11 14:22:14 +00:00
|
|
|
|
ast::{self, DocCommentsOwner},
|
2019-12-13 21:00:05 +00:00
|
|
|
|
match_ast, AstNode,
|
|
|
|
|
SyntaxKind::*,
|
|
|
|
|
SyntaxToken, TokenAtOffset,
|
2019-01-08 19:33:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-05-30 17:46:43 +00:00
|
|
|
|
use crate::{
|
2019-12-20 16:12:31 +00:00
|
|
|
|
display::{macro_label, rust_code_markup, rust_code_markup_with_doc, ShortLabel},
|
2020-02-28 03:37:22 +00:00
|
|
|
|
FilePosition, RangeInfo,
|
2019-05-30 17:46:43 +00:00
|
|
|
|
};
|
2020-03-05 23:02:14 +00:00
|
|
|
|
use itertools::Itertools;
|
|
|
|
|
use std::iter::once;
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
2019-02-26 16:56:04 +00:00
|
|
|
|
/// Contains the results when hovering over an item
|
2020-03-15 23:30:50 +00:00
|
|
|
|
#[derive(Debug, Default)]
|
2019-02-26 16:56:04 +00:00
|
|
|
|
pub struct HoverResult {
|
|
|
|
|
results: Vec<String>,
|
2019-06-04 06:32:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-26 16:56:04 +00:00
|
|
|
|
impl HoverResult {
|
|
|
|
|
pub fn new() -> HoverResult {
|
2020-03-15 23:30:50 +00:00
|
|
|
|
Self::default()
|
2019-02-26 16:56:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn extend(&mut self, item: Option<String>) {
|
|
|
|
|
self.results.extend(item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
|
self.results.is_empty()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
|
self.results.len()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn first(&self) -> Option<&str> {
|
|
|
|
|
self.results.first().map(String::as_str)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn results(&self) -> &[String] {
|
|
|
|
|
&self.results
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns the results converted into markup
|
|
|
|
|
/// for displaying in a UI
|
|
|
|
|
pub fn to_markup(&self) -> String {
|
2020-03-15 23:30:50 +00:00
|
|
|
|
self.results.join("\n\n---\n")
|
2019-02-26 16:56:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-05 23:02:14 +00:00
|
|
|
|
fn hover_text(
|
|
|
|
|
docs: Option<String>,
|
|
|
|
|
desc: Option<String>,
|
|
|
|
|
mod_path: Option<String>,
|
|
|
|
|
) -> Option<String> {
|
2020-03-16 00:35:59 +00:00
|
|
|
|
if let Some(desc) = desc {
|
|
|
|
|
Some(rust_code_markup_with_doc(&desc, docs.as_deref(), mod_path.as_deref()))
|
|
|
|
|
} else {
|
|
|
|
|
docs
|
2019-06-10 16:34:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-05 23:02:14 +00:00
|
|
|
|
fn definition_owner_name(db: &RootDatabase, def: &Definition) -> Option<String> {
|
|
|
|
|
match def {
|
|
|
|
|
Definition::StructField(f) => Some(f.parent_def(db).name(db)),
|
|
|
|
|
Definition::Local(l) => l.parent(db).name(db),
|
|
|
|
|
Definition::ModuleDef(md) => match md {
|
|
|
|
|
ModuleDef::Function(f) => match f.as_assoc_item(db)?.container(db) {
|
|
|
|
|
AssocItemContainer::Trait(t) => Some(t.name(db)),
|
|
|
|
|
AssocItemContainer::ImplDef(i) => i.target_ty(db).as_adt().map(|adt| adt.name(db)),
|
|
|
|
|
},
|
|
|
|
|
ModuleDef::EnumVariant(e) => Some(e.parent_enum(db).name(db)),
|
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
Definition::SelfType(i) => i.target_ty(db).as_adt().map(|adt| adt.name(db)),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
.map(|name| name.to_string())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn determine_mod_path(db: &RootDatabase, def: &Definition) -> Option<String> {
|
|
|
|
|
let mod_path = def.module(db).map(|module| {
|
2020-03-16 10:03:43 +00:00
|
|
|
|
once(db.crate_graph()[module.krate().into()].display_name.as_ref().map(ToString::to_string))
|
|
|
|
|
.chain(
|
|
|
|
|
module
|
|
|
|
|
.path_to_root(db)
|
|
|
|
|
.into_iter()
|
|
|
|
|
.rev()
|
|
|
|
|
.map(|it| it.name(db).map(|name| name.to_string())),
|
|
|
|
|
)
|
|
|
|
|
.chain(once(definition_owner_name(db, def)))
|
|
|
|
|
.flatten()
|
|
|
|
|
.join("::")
|
2020-03-05 23:02:14 +00:00
|
|
|
|
});
|
2020-03-16 12:13:50 +00:00
|
|
|
|
mod_path
|
2020-03-05 23:02:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 17:36:39 +00:00
|
|
|
|
fn hover_text_from_name_kind(db: &RootDatabase, def: Definition) -> Option<String> {
|
2020-03-05 23:02:14 +00:00
|
|
|
|
let mod_path = determine_mod_path(db, &def);
|
2020-02-19 13:56:22 +00:00
|
|
|
|
return match def {
|
2020-03-03 17:36:39 +00:00
|
|
|
|
Definition::Macro(it) => {
|
2019-11-15 03:48:35 +00:00
|
|
|
|
let src = it.source(db);
|
2020-03-05 23:02:14 +00:00
|
|
|
|
hover_text(src.value.doc_comment_text(), Some(macro_label(&src.value)), mod_path)
|
2019-11-15 03:48:35 +00:00
|
|
|
|
}
|
2020-03-03 17:36:39 +00:00
|
|
|
|
Definition::StructField(it) => {
|
2019-11-15 03:48:35 +00:00
|
|
|
|
let src = it.source(db);
|
2019-11-20 06:40:36 +00:00
|
|
|
|
match src.value {
|
2020-03-08 13:26:57 +00:00
|
|
|
|
FieldSource::Named(it) => {
|
2020-03-05 23:02:14 +00:00
|
|
|
|
hover_text(it.doc_comment_text(), it.short_label(), mod_path)
|
|
|
|
|
}
|
2019-11-15 03:48:35 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-03 17:36:39 +00:00
|
|
|
|
Definition::ModuleDef(it) => match it {
|
2020-03-05 23:02:14 +00:00
|
|
|
|
ModuleDef::Module(it) => match it.definition_source(db).value {
|
|
|
|
|
ModuleSource::Module(it) => {
|
|
|
|
|
hover_text(it.doc_comment_text(), it.short_label(), mod_path)
|
2019-11-15 03:48:35 +00:00
|
|
|
|
}
|
|
|
|
|
_ => None,
|
|
|
|
|
},
|
2020-03-05 23:02:14 +00:00
|
|
|
|
ModuleDef::Function(it) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::Adt(Adt::Struct(it)) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::Adt(Adt::Union(it)) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::Adt(Adt::Enum(it)) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::EnumVariant(it) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::Const(it) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::Static(it) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::Trait(it) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::TypeAlias(it) => from_def_source(db, it, mod_path),
|
|
|
|
|
ModuleDef::BuiltinType(it) => Some(it.to_string()),
|
2019-11-15 03:48:35 +00:00
|
|
|
|
},
|
2020-03-16 00:35:59 +00:00
|
|
|
|
Definition::Local(it) => Some(rust_code_markup(&it.ty(db).display_truncated(db, None))),
|
2020-03-03 17:36:39 +00:00
|
|
|
|
Definition::TypeParam(_) | Definition::SelfType(_) => {
|
2019-11-15 03:48:35 +00:00
|
|
|
|
// FIXME: Hover for generic param
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-05 23:02:14 +00:00
|
|
|
|
fn from_def_source<A, D>(db: &RootDatabase, def: D, mod_path: Option<String>) -> Option<String>
|
2019-11-15 03:48:35 +00:00
|
|
|
|
where
|
|
|
|
|
D: HasSource<Ast = A>,
|
|
|
|
|
A: ast::DocCommentsOwner + ast::NameOwner + ShortLabel,
|
|
|
|
|
{
|
|
|
|
|
let src = def.source(db);
|
2020-03-05 23:02:14 +00:00
|
|
|
|
hover_text(src.value.doc_comment_text(), src.value.short_label(), mod_path)
|
2019-11-15 03:48:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-26 16:56:04 +00:00
|
|
|
|
pub(crate) fn hover(db: &RootDatabase, position: FilePosition) -> Option<RangeInfo<HoverResult>> {
|
2020-02-18 17:35:10 +00:00
|
|
|
|
let sema = Semantics::new(db);
|
|
|
|
|
let file = sema.parse(position.file_id).syntax().clone();
|
2019-12-13 21:00:05 +00:00
|
|
|
|
let token = pick_best(file.token_at_offset(position.offset))?;
|
2020-02-18 17:35:10 +00:00
|
|
|
|
let token = sema.descend_into_macros(token);
|
2019-11-15 03:48:35 +00:00
|
|
|
|
|
2019-02-26 16:56:04 +00:00
|
|
|
|
let mut res = HoverResult::new();
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
2020-02-19 03:54:23 +00:00
|
|
|
|
if let Some((node, name_kind)) = match_ast! {
|
2020-02-18 17:35:10 +00:00
|
|
|
|
match (token.parent()) {
|
2019-11-18 16:58:42 +00:00
|
|
|
|
ast::NameRef(name_ref) => {
|
2020-03-02 18:00:38 +00:00
|
|
|
|
classify_name_ref(&sema, &name_ref).map(|d| (name_ref.syntax().clone(), d.definition()))
|
2019-11-18 16:58:42 +00:00
|
|
|
|
},
|
|
|
|
|
ast::Name(name) => {
|
2020-02-28 14:27:52 +00:00
|
|
|
|
classify_name(&sema, &name).map(|d| (name.syntax().clone(), d.definition()))
|
2019-11-18 16:58:42 +00:00
|
|
|
|
},
|
|
|
|
|
_ => None,
|
2019-02-27 07:49:22 +00:00
|
|
|
|
}
|
2019-12-20 16:12:31 +00:00
|
|
|
|
} {
|
2020-02-18 17:35:10 +00:00
|
|
|
|
let range = sema.original_range(&node).range;
|
2019-12-20 16:12:31 +00:00
|
|
|
|
res.extend(hover_text_from_name_kind(db, name_kind));
|
2019-02-26 16:56:04 +00:00
|
|
|
|
|
2019-12-20 16:12:31 +00:00
|
|
|
|
if !res.is_empty() {
|
|
|
|
|
return Some(RangeInfo::new(range, res));
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
2019-12-20 16:12:31 +00:00
|
|
|
|
let node = token
|
|
|
|
|
.ancestors()
|
|
|
|
|
.find(|n| ast::Expr::cast(n.clone()).is_some() || ast::Pat::cast(n.clone()).is_some())?;
|
2020-01-10 17:51:08 +00:00
|
|
|
|
|
2020-02-28 03:37:22 +00:00
|
|
|
|
let ty = match_ast! {
|
|
|
|
|
match node {
|
|
|
|
|
ast::MacroCall(_it) => {
|
2020-02-28 07:39:34 +00:00
|
|
|
|
// If this node is a MACRO_CALL, it means that `descend_into_macros` failed to resolve.
|
2020-02-28 03:37:22 +00:00
|
|
|
|
// (e.g expanding a builtin macro). So we give up here.
|
|
|
|
|
return None;
|
|
|
|
|
},
|
|
|
|
|
ast::Expr(it) => {
|
|
|
|
|
sema.type_of_expr(&it)
|
|
|
|
|
},
|
|
|
|
|
ast::Pat(it) => {
|
|
|
|
|
sema.type_of_pat(&it)
|
|
|
|
|
},
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}?;
|
2019-12-20 16:12:31 +00:00
|
|
|
|
|
2020-03-16 00:35:59 +00:00
|
|
|
|
res.extend(Some(rust_code_markup(&ty.display_truncated(db, None))));
|
2020-02-28 03:37:22 +00:00
|
|
|
|
let range = sema.original_range(&node).range;
|
2019-11-15 03:48:35 +00:00
|
|
|
|
Some(RangeInfo::new(range, res))
|
2019-01-08 19:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 21:00:05 +00:00
|
|
|
|
fn pick_best(tokens: TokenAtOffset<SyntaxToken>) -> Option<SyntaxToken> {
|
|
|
|
|
return tokens.max_by_key(priority);
|
|
|
|
|
fn priority(n: &SyntaxToken) -> usize {
|
|
|
|
|
match n.kind() {
|
|
|
|
|
IDENT | INT_NUMBER => 3,
|
|
|
|
|
L_PAREN | R_PAREN => 2,
|
|
|
|
|
kind if kind.is_trivia() => 0,
|
|
|
|
|
_ => 1,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2020-02-18 17:35:10 +00:00
|
|
|
|
use ra_db::FileLoader;
|
|
|
|
|
use ra_syntax::TextRange;
|
|
|
|
|
|
2020-02-28 03:37:22 +00:00
|
|
|
|
use crate::mock_analysis::{analysis_and_position, single_file_with_position};
|
2019-02-26 16:56:04 +00:00
|
|
|
|
|
|
|
|
|
fn trim_markup(s: &str) -> &str {
|
|
|
|
|
s.trim_start_matches("```rust\n").trim_end_matches("\n```")
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-28 07:33:06 +00:00
|
|
|
|
fn trim_markup_opt(s: Option<&str>) -> Option<&str> {
|
|
|
|
|
s.map(trim_markup)
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-19 03:54:23 +00:00
|
|
|
|
fn check_hover_result(fixture: &str, expected: &[&str]) -> String {
|
2019-02-26 16:56:04 +00:00
|
|
|
|
let (analysis, position) = analysis_and_position(fixture);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-05-30 17:46:43 +00:00
|
|
|
|
let mut results = Vec::from(hover.info.results());
|
|
|
|
|
results.sort();
|
2019-02-26 16:56:04 +00:00
|
|
|
|
|
|
|
|
|
for (markup, expected) in
|
2019-05-30 17:46:43 +00:00
|
|
|
|
results.iter().zip(expected.iter().chain(std::iter::repeat(&"<missing>")))
|
2019-02-26 16:56:04 +00:00
|
|
|
|
{
|
|
|
|
|
assert_eq!(trim_markup(&markup), *expected);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert_eq!(hover.info.len(), expected.len());
|
2020-02-19 03:54:23 +00:00
|
|
|
|
|
|
|
|
|
let content = analysis.db.file_text(position.file_id);
|
|
|
|
|
content[hover.range].to_string()
|
2019-02-26 16:56:04 +00:00
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
2020-02-26 16:12:26 +00:00
|
|
|
|
fn check_hover_no_result(fixture: &str) {
|
|
|
|
|
let (analysis, position) = analysis_and_position(fixture);
|
|
|
|
|
assert!(analysis.hover(position).unwrap().is_none());
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_shows_type_of_an_expression() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
pub fn foo() -> u32 { 1 }
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo_test = foo()<|>;
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(hover.range, TextRange::from_to(95.into(), 100.into()));
|
2019-02-28 07:33:06 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("u32"));
|
2019-02-26 16:56:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn hover_shows_fn_signature() {
|
|
|
|
|
// Single file with result
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
pub fn foo() -> u32 { 1 }
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo_test = fo<|>o();
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
&["pub fn foo() -> u32"],
|
|
|
|
|
);
|
|
|
|
|
|
2019-12-20 16:12:31 +00:00
|
|
|
|
// Multiple candidates but results are ambiguous.
|
2019-02-26 16:56:04 +00:00
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /a.rs
|
|
|
|
|
pub fn foo() -> u32 { 1 }
|
|
|
|
|
|
|
|
|
|
//- /b.rs
|
|
|
|
|
pub fn foo() -> &str { "" }
|
|
|
|
|
|
|
|
|
|
//- /c.rs
|
|
|
|
|
pub fn foo(a: u32, b: u32) {}
|
|
|
|
|
|
|
|
|
|
//- /main.rs
|
|
|
|
|
mod a;
|
|
|
|
|
mod b;
|
|
|
|
|
mod c;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo_test = fo<|>o();
|
|
|
|
|
}
|
|
|
|
|
"#,
|
2019-12-20 16:12:31 +00:00
|
|
|
|
&["{unknown}"],
|
2019-02-26 16:56:04 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn hover_shows_fn_signature_with_type_params() {
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
pub fn foo<'a, T: AsRef<str>>(b: &'a T) -> &'a str { }
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo_test = fo<|>o();
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
&["pub fn foo<'a, T: AsRef<str>>(b: &'a T) -> &'a str"],
|
|
|
|
|
);
|
2019-01-08 19:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-27 07:49:22 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_shows_fn_signature_on_fn_name() {
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
pub fn foo<|>(a: u32, b: u32) -> u32 {}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
&["pub fn foo(a: u32, b: u32) -> u32"],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-27 15:52:37 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_shows_struct_field_info() {
|
|
|
|
|
// Hovering over the field when instantiating
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
struct Foo {
|
|
|
|
|
field_a: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo = Foo {
|
|
|
|
|
field_a<|>: 0,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
"#,
|
2020-03-05 23:02:14 +00:00
|
|
|
|
&["Foo\nfield_a: u32"],
|
2019-02-27 15:52:37 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Hovering over the field in the definition
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
struct Foo {
|
|
|
|
|
field_a<|>: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo = Foo {
|
|
|
|
|
field_a: 0,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
"#,
|
2020-03-05 23:02:14 +00:00
|
|
|
|
&["Foo\nfield_a: u32"],
|
2019-02-27 15:52:37 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn hover_const_static() {
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
2019-11-20 15:00:01 +00:00
|
|
|
|
const foo<|>: u32 = 0;
|
2019-02-27 15:52:37 +00:00
|
|
|
|
"#,
|
|
|
|
|
&["const foo: u32"],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
2019-11-20 15:00:01 +00:00
|
|
|
|
static foo<|>: u32 = 0;
|
2019-02-27 15:52:37 +00:00
|
|
|
|
"#,
|
|
|
|
|
&["static foo: u32"],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 10:45:00 +00:00
|
|
|
|
#[test]
|
2019-12-19 14:47:09 +00:00
|
|
|
|
fn hover_omits_default_generic_types() {
|
2019-12-19 10:45:00 +00:00
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
struct Test<K, T = u8> {
|
|
|
|
|
k: K,
|
|
|
|
|
t: T,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let zz<|> = Test { t: 23, k: 33 };
|
|
|
|
|
}"#,
|
2019-12-19 14:47:09 +00:00
|
|
|
|
&["Test<i32>"],
|
2019-12-19 10:45:00 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-20 21:36:54 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_some() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
enum Option<T> { Some(T) }
|
|
|
|
|
use Option::Some;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
So<|>me(12);
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2020-03-05 23:02:14 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Option\nSome"));
|
2019-03-07 18:28:51 +00:00
|
|
|
|
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
enum Option<T> { Some(T) }
|
|
|
|
|
use Option::Some;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let b<|>ar = Some(12);
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Option<i32>"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn hover_enum_variant() {
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
enum Option<T> {
|
|
|
|
|
/// The None variant
|
|
|
|
|
Non<|>e
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
&["
|
2020-03-05 23:02:14 +00:00
|
|
|
|
Option
|
2019-03-07 18:28:51 +00:00
|
|
|
|
None
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The None variant
|
|
|
|
|
"
|
|
|
|
|
.trim()],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /main.rs
|
|
|
|
|
enum Option<T> {
|
|
|
|
|
/// The Some variant
|
|
|
|
|
Some(T)
|
|
|
|
|
}
|
|
|
|
|
fn main() {
|
|
|
|
|
let s = Option::Som<|>e(12);
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
&["
|
2020-03-05 23:02:14 +00:00
|
|
|
|
Option
|
2019-03-07 18:28:51 +00:00
|
|
|
|
Some
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The Some variant
|
|
|
|
|
"
|
|
|
|
|
.trim()],
|
|
|
|
|
);
|
2019-02-20 21:36:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_for_local_variable() {
|
|
|
|
|
let (analysis, position) = single_file_with_position("fn func(foo: i32) { fo<|>o; }");
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-02-28 07:33:06 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
2019-01-08 19:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn hover_for_local_variable_pat() {
|
|
|
|
|
let (analysis, position) = single_file_with_position("fn func(fo<|>o: i32) {}");
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-02-28 07:33:06 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
2019-01-08 19:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-28 13:43:10 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_local_var_edge() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
fn func(foo: i32) { if true { <|>foo; }; }
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 18:54:07 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn hover_for_param_edge() {
|
|
|
|
|
let (analysis, position) = single_file_with_position("fn func(<|>foo: i32) {}");
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-21 10:04:14 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_infer_associated_method_result() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
2019-03-08 21:45:26 +00:00
|
|
|
|
struct Thing { x: u32 }
|
2019-02-21 10:04:14 +00:00
|
|
|
|
|
|
|
|
|
impl Thing {
|
|
|
|
|
fn new() -> Thing {
|
|
|
|
|
Thing { x: 0 }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let foo_<|>test = Thing::new();
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-02-28 07:33:06 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Thing"));
|
2019-02-21 10:04:14 +00:00
|
|
|
|
}
|
2019-03-01 23:26:49 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_infer_associated_method_exact() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
2020-03-08 13:26:57 +00:00
|
|
|
|
mod wrapper {
|
|
|
|
|
struct Thing { x: u32 }
|
2019-03-01 23:26:49 +00:00
|
|
|
|
|
2020-03-08 13:26:57 +00:00
|
|
|
|
impl Thing {
|
|
|
|
|
fn new() -> Thing {
|
|
|
|
|
Thing { x: 0 }
|
|
|
|
|
}
|
2019-03-01 23:26:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2020-03-08 13:26:57 +00:00
|
|
|
|
let foo_test = wrapper::Thing::new<|>();
|
2019-03-01 23:26:49 +00:00
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2020-03-08 13:26:57 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("wrapper::Thing\nfn new() -> Thing"));
|
2019-03-01 23:26:49 +00:00
|
|
|
|
}
|
2019-03-06 16:39:11 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_infer_associated_const_in_pattern() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
struct X;
|
|
|
|
|
impl X {
|
|
|
|
|
const C: u32 = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
match 1 {
|
|
|
|
|
X::C<|> => {},
|
|
|
|
|
2 => {},
|
|
|
|
|
_ => {}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("const C: u32"));
|
|
|
|
|
}
|
2019-03-07 08:32:39 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_self() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
2019-03-08 21:45:26 +00:00
|
|
|
|
struct Thing { x: u32 }
|
2019-03-07 08:32:39 +00:00
|
|
|
|
impl Thing {
|
|
|
|
|
fn new() -> Self {
|
|
|
|
|
Self<|> { x: 0 }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-11-26 18:18:26 +00:00
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Thing"));
|
2019-03-07 08:32:39 +00:00
|
|
|
|
|
2019-11-26 18:18:26 +00:00
|
|
|
|
/* FIXME: revive these tests
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
struct Thing { x: u32 }
|
|
|
|
|
impl Thing {
|
|
|
|
|
fn new() -> Self<|> {
|
|
|
|
|
Self { x: 0 }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Thing"));
|
|
|
|
|
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
enum Thing { A }
|
|
|
|
|
impl Thing {
|
|
|
|
|
pub fn new() -> Self<|> {
|
|
|
|
|
Thing::A
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("enum Thing"));
|
|
|
|
|
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
enum Thing { A }
|
|
|
|
|
impl Thing {
|
|
|
|
|
pub fn thing(a: Self<|>) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("enum Thing"));
|
|
|
|
|
*/
|
2019-03-07 08:32:39 +00:00
|
|
|
|
}
|
2019-06-11 14:32:33 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_shadowing_pat() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
fn x() {}
|
|
|
|
|
|
|
|
|
|
fn y() {
|
|
|
|
|
let x = 0i32;
|
|
|
|
|
x<|>;
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
|
|
|
|
}
|
2019-09-10 05:33:02 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_macro_invocation() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
macro_rules! foo {
|
|
|
|
|
() => {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn f() {
|
|
|
|
|
fo<|>o!();
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("macro_rules! foo"));
|
|
|
|
|
}
|
2019-11-10 18:59:39 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_tuple_field() {
|
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
|
"
|
|
|
|
|
struct TS(String, i32<|>);
|
|
|
|
|
",
|
|
|
|
|
);
|
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
|
|
|
|
}
|
2019-11-18 16:58:42 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_macro() {
|
2020-02-19 03:54:23 +00:00
|
|
|
|
let hover_on = check_hover_result(
|
2019-11-18 16:58:42 +00:00
|
|
|
|
"
|
2019-11-18 19:02:02 +00:00
|
|
|
|
//- /lib.rs
|
2019-11-18 16:58:42 +00:00
|
|
|
|
macro_rules! id {
|
2019-11-18 19:02:02 +00:00
|
|
|
|
($($tt:tt)*) => { $($tt)* }
|
2019-11-18 16:58:42 +00:00
|
|
|
|
}
|
|
|
|
|
fn foo() {}
|
|
|
|
|
id! {
|
|
|
|
|
fn bar() {
|
2019-11-18 19:02:02 +00:00
|
|
|
|
fo<|>o();
|
2019-11-18 16:58:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
",
|
2019-11-18 19:02:02 +00:00
|
|
|
|
&["fn foo()"],
|
2019-11-18 16:58:42 +00:00
|
|
|
|
);
|
2020-02-19 03:54:23 +00:00
|
|
|
|
|
|
|
|
|
assert_eq!(hover_on, "foo")
|
2019-11-18 16:58:42 +00:00
|
|
|
|
}
|
2020-01-10 17:51:08 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_expr_in_macro() {
|
2020-02-19 03:54:23 +00:00
|
|
|
|
let hover_on = check_hover_result(
|
2020-01-10 17:51:08 +00:00
|
|
|
|
"
|
|
|
|
|
//- /lib.rs
|
|
|
|
|
macro_rules! id {
|
|
|
|
|
($($tt:tt)*) => { $($tt)* }
|
|
|
|
|
}
|
|
|
|
|
fn foo(bar:u32) {
|
|
|
|
|
let a = id!(ba<|>r);
|
2020-01-14 16:39:28 +00:00
|
|
|
|
}
|
2020-01-10 17:51:08 +00:00
|
|
|
|
",
|
|
|
|
|
&["u32"],
|
|
|
|
|
);
|
2020-02-19 03:54:23 +00:00
|
|
|
|
|
|
|
|
|
assert_eq!(hover_on, "bar")
|
2020-01-10 17:51:08 +00:00
|
|
|
|
}
|
2020-02-19 04:13:29 +00:00
|
|
|
|
|
2020-02-26 04:27:57 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_expr_in_macro_recursive() {
|
|
|
|
|
let hover_on = check_hover_result(
|
|
|
|
|
"
|
|
|
|
|
//- /lib.rs
|
|
|
|
|
macro_rules! id_deep {
|
|
|
|
|
($($tt:tt)*) => { $($tt)* }
|
|
|
|
|
}
|
|
|
|
|
macro_rules! id {
|
|
|
|
|
($($tt:tt)*) => { id_deep!($($tt)*) }
|
|
|
|
|
}
|
|
|
|
|
fn foo(bar:u32) {
|
|
|
|
|
let a = id!(ba<|>r);
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
&["u32"],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert_eq!(hover_on, "bar")
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-28 14:53:59 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_func_in_macro_recursive() {
|
|
|
|
|
let hover_on = check_hover_result(
|
|
|
|
|
"
|
|
|
|
|
//- /lib.rs
|
|
|
|
|
macro_rules! id_deep {
|
|
|
|
|
($($tt:tt)*) => { $($tt)* }
|
|
|
|
|
}
|
|
|
|
|
macro_rules! id {
|
|
|
|
|
($($tt:tt)*) => { id_deep!($($tt)*) }
|
|
|
|
|
}
|
|
|
|
|
fn bar() -> u32 {
|
|
|
|
|
0
|
|
|
|
|
}
|
|
|
|
|
fn foo() {
|
|
|
|
|
let a = id!([0u32, bar(<|>)] );
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
&["u32"],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert_eq!(hover_on, "bar()")
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 16:12:26 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_literal_string_in_macro() {
|
2020-02-28 03:37:22 +00:00
|
|
|
|
let hover_on = check_hover_result(
|
2020-02-26 16:12:26 +00:00
|
|
|
|
r#"
|
|
|
|
|
//- /lib.rs
|
|
|
|
|
macro_rules! arr {
|
|
|
|
|
($($tt:tt)*) => { [$($tt)*)] }
|
|
|
|
|
}
|
|
|
|
|
fn foo() {
|
|
|
|
|
let mastered_for_itunes = "";
|
|
|
|
|
let _ = arr!("Tr<|>acks", &mastered_for_itunes);
|
|
|
|
|
}
|
|
|
|
|
"#,
|
2020-02-28 03:37:22 +00:00
|
|
|
|
&["&str"],
|
2020-02-26 16:12:26 +00:00
|
|
|
|
);
|
2020-02-28 03:37:22 +00:00
|
|
|
|
|
|
|
|
|
assert_eq!(hover_on, "\"Tracks\"");
|
2020-02-26 16:12:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 15:14:15 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_assert_macro() {
|
|
|
|
|
let hover_on = check_hover_result(
|
|
|
|
|
r#"
|
|
|
|
|
//- /lib.rs
|
|
|
|
|
#[rustc_builtin_macro]
|
|
|
|
|
macro_rules! assert {}
|
|
|
|
|
|
|
|
|
|
fn bar() -> bool { true }
|
|
|
|
|
fn foo() {
|
|
|
|
|
assert!(ba<|>r());
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
&["fn bar() -> bool"],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert_eq!(hover_on, "bar");
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 15:03:18 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_through_literal_string_in_builtin_macro() {
|
|
|
|
|
check_hover_no_result(
|
|
|
|
|
r#"
|
2020-02-28 14:27:52 +00:00
|
|
|
|
//- /lib.rs
|
2020-02-27 15:03:18 +00:00
|
|
|
|
#[rustc_builtin_macro]
|
2020-03-11 15:08:12 +00:00
|
|
|
|
macro_rules! format {}
|
2020-02-27 15:03:18 +00:00
|
|
|
|
|
|
|
|
|
fn foo() {
|
2020-03-11 15:08:12 +00:00
|
|
|
|
format!("hel<|>lo {}", 0);
|
2020-02-27 15:03:18 +00:00
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-19 04:13:29 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_hover_non_ascii_space_doc() {
|
|
|
|
|
check_hover_result(
|
|
|
|
|
"
|
|
|
|
|
//- /lib.rs
|
|
|
|
|
/// <- `\u{3000}` here
|
|
|
|
|
fn foo() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
|
fo<|>o();
|
|
|
|
|
}
|
|
|
|
|
",
|
|
|
|
|
&["fn foo()\n```\n\n<- `\u{3000}` here"],
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
|
}
|