2020-04-08 16:48:16 -05:00
|
|
|
//! This module defines multiple types of inlay hints and their visibility
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
use hir::{Adt, HirDisplay, Semantics, Type};
|
2020-02-06 05:52:32 -06:00
|
|
|
use ra_ide_db::RootDatabase;
|
2019-12-21 11:45:46 -06:00
|
|
|
use ra_prof::profile;
|
2019-07-19 16:20:09 -05:00
|
|
|
use ra_syntax::{
|
2020-01-14 11:02:01 -06:00
|
|
|
ast::{self, ArgListOwner, AstNode, TypeAscriptionOwner},
|
2020-03-24 14:31:02 -05:00
|
|
|
match_ast, Direction, NodeOrToken, SmolStr, SyntaxKind, TextRange,
|
2019-07-19 16:20:09 -05:00
|
|
|
};
|
|
|
|
|
2020-02-06 05:52:32 -06:00
|
|
|
use crate::{FileId, FunctionSignature};
|
2019-12-21 11:45:46 -06:00
|
|
|
|
2020-03-10 13:21:56 -05:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2020-03-31 09:02:55 -05:00
|
|
|
pub struct InlayHintsConfig {
|
2020-03-11 22:14:39 -05:00
|
|
|
pub type_hints: bool,
|
|
|
|
pub parameter_hints: bool,
|
2020-03-23 14:32:05 -05:00
|
|
|
pub chaining_hints: bool,
|
2020-03-10 13:21:56 -05:00
|
|
|
pub max_length: Option<usize>,
|
|
|
|
}
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
impl Default for InlayHintsConfig {
|
2020-03-10 13:21:56 -05:00
|
|
|
fn default() -> Self {
|
2020-03-24 14:31:02 -05:00
|
|
|
Self { type_hints: true, parameter_hints: true, chaining_hints: true, max_length: None }
|
2020-03-10 13:21:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2019-07-19 16:20:09 -05:00
|
|
|
pub enum InlayKind {
|
2019-08-04 16:28:36 -05:00
|
|
|
TypeHint,
|
2020-01-14 11:02:01 -06:00
|
|
|
ParameterHint,
|
2020-03-23 14:32:05 -05:00
|
|
|
ChainingHint,
|
2019-07-19 16:20:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct InlayHint {
|
|
|
|
pub range: TextRange,
|
2019-07-22 13:52:47 -05:00
|
|
|
pub kind: InlayKind,
|
|
|
|
pub label: SmolStr,
|
2019-07-19 16:20:09 -05:00
|
|
|
}
|
|
|
|
|
2019-11-18 11:02:28 -06:00
|
|
|
pub(crate) fn inlay_hints(
|
|
|
|
db: &RootDatabase,
|
|
|
|
file_id: FileId,
|
2020-03-31 09:02:55 -05:00
|
|
|
config: &InlayHintsConfig,
|
2019-11-18 11:02:28 -06:00
|
|
|
) -> Vec<InlayHint> {
|
2020-02-29 16:24:50 -06:00
|
|
|
let _p = profile("inlay_hints");
|
2020-02-18 11:35:10 -06:00
|
|
|
let sema = Semantics::new(db);
|
|
|
|
let file = sema.parse(file_id);
|
2020-02-29 16:24:50 -06:00
|
|
|
|
2020-01-16 07:31:34 -06:00
|
|
|
let mut res = Vec::new();
|
|
|
|
for node in file.syntax().descendants() {
|
2020-03-23 14:32:05 -05:00
|
|
|
if let Some(expr) = ast::Expr::cast(node.clone()) {
|
2020-03-31 09:02:55 -05:00
|
|
|
get_chaining_hints(&mut res, &sema, config, expr);
|
2020-03-23 14:32:05 -05:00
|
|
|
}
|
|
|
|
|
2020-02-29 16:24:50 -06:00
|
|
|
match_ast! {
|
|
|
|
match node {
|
2020-03-31 09:02:55 -05:00
|
|
|
ast::CallExpr(it) => { get_param_name_hints(&mut res, &sema, config, ast::Expr::from(it)); },
|
|
|
|
ast::MethodCallExpr(it) => { get_param_name_hints(&mut res, &sema, config, ast::Expr::from(it)); },
|
|
|
|
ast::BindPat(it) => { get_bind_pat_hints(&mut res, &sema, config, it); },
|
2020-02-29 16:24:50 -06:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
2020-01-16 07:31:34 -06:00
|
|
|
}
|
|
|
|
res
|
2019-07-19 16:20:09 -05:00
|
|
|
}
|
|
|
|
|
2020-03-24 13:33:00 -05:00
|
|
|
fn get_chaining_hints(
|
|
|
|
acc: &mut Vec<InlayHint>,
|
|
|
|
sema: &Semantics<RootDatabase>,
|
2020-03-31 09:02:55 -05:00
|
|
|
config: &InlayHintsConfig,
|
2020-03-24 13:33:00 -05:00
|
|
|
expr: ast::Expr,
|
|
|
|
) -> Option<()> {
|
2020-03-31 09:02:55 -05:00
|
|
|
if !config.chaining_hints {
|
2020-03-24 13:33:00 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:25:03 -05:00
|
|
|
if matches!(expr, ast::Expr::RecordLit(_)) {
|
2020-03-24 13:33:00 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2020-03-24 14:31:02 -05:00
|
|
|
let mut tokens = expr
|
|
|
|
.syntax()
|
2020-03-24 13:33:00 -05:00
|
|
|
.siblings_with_tokens(Direction::Next)
|
|
|
|
.filter_map(NodeOrToken::into_token)
|
|
|
|
.filter(|t| match t.kind() {
|
|
|
|
SyntaxKind::WHITESPACE if !t.text().contains('\n') => false,
|
|
|
|
SyntaxKind::COMMENT => false,
|
|
|
|
_ => true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Chaining can be defined as an expression whose next sibling tokens are newline and dot
|
|
|
|
// Ignoring extra whitespace and comments
|
|
|
|
let next = tokens.next()?.kind();
|
|
|
|
let next_next = tokens.next()?.kind();
|
2020-03-24 14:31:02 -05:00
|
|
|
if next == SyntaxKind::WHITESPACE && next_next == SyntaxKind::DOT {
|
2020-03-31 13:25:03 -05:00
|
|
|
let ty = sema.type_of_expr(&expr)?;
|
|
|
|
if ty.is_unknown() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
if matches!(expr, ast::Expr::PathExpr(_)) {
|
|
|
|
if let Some(Adt::Struct(st)) = ty.as_adt() {
|
|
|
|
if st.fields(sema.db).is_empty() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-31 09:02:55 -05:00
|
|
|
let label = ty.display_truncated(sema.db, config.max_length).to_string();
|
2020-03-24 13:33:00 -05:00
|
|
|
acc.push(InlayHint {
|
|
|
|
range: expr.syntax().text_range(),
|
|
|
|
kind: InlayKind::ChainingHint,
|
|
|
|
label: label.into(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Some(())
|
|
|
|
}
|
|
|
|
|
2020-02-29 16:24:50 -06:00
|
|
|
fn get_param_name_hints(
|
2020-01-16 07:31:34 -06:00
|
|
|
acc: &mut Vec<InlayHint>,
|
2020-02-18 11:35:10 -06:00
|
|
|
sema: &Semantics<RootDatabase>,
|
2020-03-31 09:02:55 -05:00
|
|
|
config: &InlayHintsConfig,
|
2020-02-29 16:24:50 -06:00
|
|
|
expr: ast::Expr,
|
2020-01-16 07:31:34 -06:00
|
|
|
) -> Option<()> {
|
2020-03-31 09:02:55 -05:00
|
|
|
if !config.parameter_hints {
|
2020-03-10 13:21:56 -05:00
|
|
|
return None;
|
2020-03-10 02:55:46 -05:00
|
|
|
}
|
|
|
|
|
2020-02-29 16:24:50 -06:00
|
|
|
let args = match &expr {
|
|
|
|
ast::Expr::CallExpr(expr) => expr.arg_list()?.args(),
|
|
|
|
ast::Expr::MethodCallExpr(expr) => expr.arg_list()?.args(),
|
|
|
|
_ => return None,
|
2020-01-16 07:31:34 -06:00
|
|
|
};
|
2020-02-29 16:24:50 -06:00
|
|
|
let args_count = args.clone().count();
|
|
|
|
|
|
|
|
let fn_signature = get_fn_signature(sema, &expr)?;
|
|
|
|
let n_params_to_skip =
|
|
|
|
if fn_signature.has_self_param && fn_signature.parameter_names.len() > args_count {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
let hints = fn_signature
|
|
|
|
.parameter_names
|
|
|
|
.iter()
|
|
|
|
.skip(n_params_to_skip)
|
|
|
|
.zip(args)
|
|
|
|
.filter(|(param, arg)| should_show_param_hint(&fn_signature, param, &arg))
|
|
|
|
.map(|(param_name, arg)| InlayHint {
|
|
|
|
range: arg.syntax().text_range(),
|
|
|
|
kind: InlayKind::ParameterHint,
|
|
|
|
label: param_name.into(),
|
|
|
|
});
|
|
|
|
|
|
|
|
acc.extend(hints);
|
|
|
|
Some(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_bind_pat_hints(
|
|
|
|
acc: &mut Vec<InlayHint>,
|
|
|
|
sema: &Semantics<RootDatabase>,
|
2020-03-31 09:02:55 -05:00
|
|
|
config: &InlayHintsConfig,
|
2020-02-29 16:24:50 -06:00
|
|
|
pat: ast::BindPat,
|
|
|
|
) -> Option<()> {
|
2020-03-31 09:02:55 -05:00
|
|
|
if !config.type_hints {
|
2020-03-10 13:21:56 -05:00
|
|
|
return None;
|
2020-03-10 02:55:46 -05:00
|
|
|
}
|
|
|
|
|
2020-02-29 16:24:50 -06:00
|
|
|
let ty = sema.type_of_pat(&pat.clone().into())?;
|
|
|
|
|
|
|
|
if should_not_display_type_hint(sema.db, &pat, &ty) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
acc.push(InlayHint {
|
|
|
|
range: pat.syntax().text_range(),
|
|
|
|
kind: InlayKind::TypeHint,
|
2020-03-31 09:02:55 -05:00
|
|
|
label: ty.display_truncated(sema.db, config.max_length).to_string().into(),
|
2020-02-29 16:24:50 -06:00
|
|
|
});
|
2020-01-16 07:31:34 -06:00
|
|
|
Some(())
|
2019-07-21 15:28:05 -05:00
|
|
|
}
|
2020-01-16 07:31:34 -06:00
|
|
|
|
2020-02-24 01:29:34 -06:00
|
|
|
fn pat_is_enum_variant(db: &RootDatabase, bind_pat: &ast::BindPat, pat_ty: &Type) -> bool {
|
|
|
|
if let Some(Adt::Enum(enum_data)) = pat_ty.as_adt() {
|
|
|
|
let pat_text = bind_pat.syntax().to_string();
|
|
|
|
enum_data
|
|
|
|
.variants(db)
|
|
|
|
.into_iter()
|
|
|
|
.map(|variant| variant.name(db).to_string())
|
|
|
|
.any(|enum_name| enum_name == pat_text)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn should_not_display_type_hint(db: &RootDatabase, bind_pat: &ast::BindPat, pat_ty: &Type) -> bool {
|
|
|
|
if pat_ty.is_unknown() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-03-08 16:21:08 -05:00
|
|
|
if let Some(Adt::Struct(s)) = pat_ty.as_adt() {
|
|
|
|
if s.fields(db).is_empty() && s.name(db).to_string() == bind_pat.syntax().to_string() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-22 14:07:09 -06:00
|
|
|
for node in bind_pat.syntax().ancestors() {
|
|
|
|
match_ast! {
|
|
|
|
match node {
|
|
|
|
ast::LetStmt(it) => {
|
|
|
|
return it.ascribed_type().is_some()
|
|
|
|
},
|
|
|
|
ast::Param(it) => {
|
|
|
|
return it.ascribed_type().is_some()
|
|
|
|
},
|
2020-02-24 01:29:34 -06:00
|
|
|
ast::MatchArm(_it) => {
|
|
|
|
return pat_is_enum_variant(db, bind_pat, pat_ty);
|
|
|
|
},
|
|
|
|
ast::IfExpr(it) => {
|
|
|
|
return it.condition().and_then(|condition| condition.pat()).is_some()
|
|
|
|
&& pat_is_enum_variant(db, bind_pat, pat_ty);
|
|
|
|
},
|
|
|
|
ast::WhileExpr(it) => {
|
|
|
|
return it.condition().and_then(|condition| condition.pat()).is_some()
|
|
|
|
&& pat_is_enum_variant(db, bind_pat, pat_ty);
|
|
|
|
},
|
2020-02-22 14:07:09 -06:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2020-02-23 03:49:53 -06:00
|
|
|
fn should_show_param_hint(
|
|
|
|
fn_signature: &FunctionSignature,
|
|
|
|
param_name: &str,
|
2020-02-24 01:29:34 -06:00
|
|
|
argument: &ast::Expr,
|
2020-02-23 03:49:53 -06:00
|
|
|
) -> bool {
|
2020-04-09 09:35:07 -05:00
|
|
|
if param_name.is_empty() || is_argument_similar_to_param(argument, param_name) {
|
2020-02-23 03:49:53 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let parameters_len = if fn_signature.has_self_param {
|
|
|
|
fn_signature.parameters.len() - 1
|
|
|
|
} else {
|
|
|
|
fn_signature.parameters.len()
|
|
|
|
};
|
2020-04-08 16:48:16 -05:00
|
|
|
|
2020-02-23 03:49:53 -06:00
|
|
|
// avoid displaying hints for common functions like map, filter, etc.
|
2020-04-08 16:48:16 -05:00
|
|
|
// or other obvious words used in std
|
2020-04-09 09:35:07 -05:00
|
|
|
if parameters_len == 1 && is_obvious_param(param_name) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_argument_similar_to_param(argument: &ast::Expr, param_name: &str) -> bool {
|
|
|
|
let argument_string = if let ast::Expr::RefExpr(ref_expr) = argument {
|
|
|
|
ref_expr.syntax().last_token().expect("RefExpr should have a last_token").to_string()
|
|
|
|
} else {
|
|
|
|
argument.syntax().to_string()
|
|
|
|
};
|
|
|
|
argument_string.starts_with(¶m_name) || argument_string.ends_with(¶m_name)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_obvious_param(param_name: &str) -> bool {
|
2020-04-08 16:48:16 -05:00
|
|
|
let is_obvious_param_name = match param_name {
|
|
|
|
"predicate" | "value" | "pat" | "rhs" | "other" => true,
|
|
|
|
_ => false,
|
|
|
|
};
|
2020-04-09 09:35:07 -05:00
|
|
|
param_name.len() == 1 || is_obvious_param_name
|
2020-02-23 03:49:53 -06:00
|
|
|
}
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
fn get_fn_signature(sema: &Semantics<RootDatabase>, expr: &ast::Expr) -> Option<FunctionSignature> {
|
2020-01-14 11:02:01 -06:00
|
|
|
match expr {
|
|
|
|
ast::Expr::CallExpr(expr) => {
|
|
|
|
// FIXME: Type::as_callable is broken for closures
|
2020-02-18 11:35:10 -06:00
|
|
|
let callable_def = sema.type_of_expr(&expr.expr()?)?.as_callable()?;
|
2020-01-14 11:02:01 -06:00
|
|
|
match callable_def {
|
|
|
|
hir::CallableDef::FunctionId(it) => {
|
2020-02-18 11:35:10 -06:00
|
|
|
Some(FunctionSignature::from_hir(sema.db, it.into()))
|
|
|
|
}
|
|
|
|
hir::CallableDef::StructId(it) => {
|
|
|
|
FunctionSignature::from_struct(sema.db, it.into())
|
2020-01-14 11:02:01 -06:00
|
|
|
}
|
|
|
|
hir::CallableDef::EnumVariantId(it) => {
|
2020-02-18 11:35:10 -06:00
|
|
|
FunctionSignature::from_enum_variant(sema.db, it.into())
|
2020-01-14 11:02:01 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::Expr::MethodCallExpr(expr) => {
|
2020-02-18 11:35:10 -06:00
|
|
|
let fn_def = sema.resolve_method_call(&expr)?;
|
|
|
|
Some(FunctionSignature::from_hir(sema.db, fn_def))
|
2020-01-14 11:02:01 -06:00
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2019-07-21 15:28:05 -05:00
|
|
|
|
2019-07-19 16:20:09 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-03-31 09:02:55 -05:00
|
|
|
use crate::inlay_hints::InlayHintsConfig;
|
2019-08-29 08:49:10 -05:00
|
|
|
use insta::assert_debug_snapshot;
|
2019-07-19 16:20:09 -05:00
|
|
|
|
2019-12-07 12:14:01 -06:00
|
|
|
use crate::mock_analysis::single_file;
|
|
|
|
|
2020-03-10 02:55:46 -05:00
|
|
|
#[test]
|
|
|
|
fn param_hints_only() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn foo(a: i32, b: i32) -> i32 { a + b }
|
|
|
|
fn main() {
|
|
|
|
let _x = foo(4, 4);
|
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ parameter_hints: true, type_hints: false, chaining_hints: false, max_length: None}).unwrap(), @r###"
|
2020-03-10 02:55:46 -05:00
|
|
|
[
|
|
|
|
InlayHint {
|
|
|
|
range: [106; 107),
|
|
|
|
kind: ParameterHint,
|
|
|
|
label: "a",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [109; 110),
|
|
|
|
kind: ParameterHint,
|
|
|
|
label: "b",
|
|
|
|
},
|
|
|
|
]"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn hints_disabled() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn foo(a: i32, b: i32) -> i32 { a + b }
|
|
|
|
fn main() {
|
|
|
|
let _x = foo(4, 4);
|
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ type_hints: false, parameter_hints: false, chaining_hints: false, max_length: None}).unwrap(), @r###"[]"###);
|
2020-03-10 02:55:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn type_hints_only() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn foo(a: i32, b: i32) -> i32 { a + b }
|
|
|
|
fn main() {
|
|
|
|
let _x = foo(4, 4);
|
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ type_hints: true, parameter_hints: false, chaining_hints: false, max_length: None}).unwrap(), @r###"
|
2020-03-10 02:55:46 -05:00
|
|
|
[
|
|
|
|
InlayHint {
|
|
|
|
range: [97; 99),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
]"###);
|
|
|
|
}
|
2019-12-07 16:54:18 -06:00
|
|
|
#[test]
|
2019-12-19 08:18:09 -06:00
|
|
|
fn default_generic_types_should_not_be_displayed() {
|
2019-12-07 16:54:18 -06:00
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
struct Test<K, T = u8> {
|
2019-12-19 04:45:00 -06:00
|
|
|
k: K,
|
2019-12-07 16:54:18 -06:00
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let zz = Test { t: 23, k: 33 };
|
2020-01-22 08:44:05 -06:00
|
|
|
let zz_ref = &zz;
|
2019-12-07 16:54:18 -06:00
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-12-07 16:54:18 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
2019-12-19 04:45:00 -06:00
|
|
|
range: [69; 71),
|
2019-12-07 16:54:18 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "Test<i32>",
|
|
|
|
},
|
2020-01-22 08:44:05 -06:00
|
|
|
InlayHint {
|
|
|
|
range: [105; 111),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "&Test<i32>",
|
|
|
|
},
|
2019-12-07 16:54:18 -06:00
|
|
|
]
|
|
|
|
"###
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-07-19 16:20:09 -05:00
|
|
|
#[test]
|
2019-07-27 16:50:26 -05:00
|
|
|
fn let_statement() {
|
2019-07-21 15:28:05 -05:00
|
|
|
let (analysis, file_id) = single_file(
|
2019-07-19 16:20:09 -05:00
|
|
|
r#"
|
2019-07-27 16:50:26 -05:00
|
|
|
#[derive(PartialEq)]
|
|
|
|
enum CustomOption<T> {
|
|
|
|
None,
|
|
|
|
Some(T),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Test {
|
|
|
|
a: CustomOption<u32>,
|
|
|
|
b: u8,
|
|
|
|
}
|
2019-07-19 16:20:09 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
struct InnerStruct {}
|
|
|
|
|
|
|
|
let test = 54;
|
2019-07-26 06:10:29 -05:00
|
|
|
let test: i32 = 33;
|
|
|
|
let mut test = 33;
|
|
|
|
let _ = 22;
|
|
|
|
let test = "test";
|
2019-07-19 16:20:09 -05:00
|
|
|
let test = InnerStruct {};
|
2019-07-26 06:10:29 -05:00
|
|
|
|
2019-07-19 16:20:09 -05:00
|
|
|
let test = vec![222];
|
2019-07-26 06:10:29 -05:00
|
|
|
let test: Vec<_> = (0..3).collect();
|
2019-07-27 16:50:26 -05:00
|
|
|
let test = (0..3).collect::<Vec<i128>>();
|
|
|
|
let test = (0..3).collect::<Vec<_>>();
|
2019-07-26 06:10:29 -05:00
|
|
|
|
2019-07-19 16:20:09 -05:00
|
|
|
let mut test = Vec::new();
|
|
|
|
test.push(333);
|
2019-07-26 06:10:29 -05:00
|
|
|
|
2019-07-19 16:20:09 -05:00
|
|
|
let test = (42, 'a');
|
2019-07-26 06:10:29 -05:00
|
|
|
let (a, (b, c, (d, e), f)) = (2, (3, 4, (6.6, 7.7), 5));
|
2019-12-07 12:14:01 -06:00
|
|
|
let &x = &92;
|
2019-07-27 16:50:26 -05:00
|
|
|
}"#,
|
2019-07-21 15:28:05 -05:00
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-11-15 03:56:24 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
|
|
|
range: [193; 197),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [236; 244),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [275; 279),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "&str",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [539; 543),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "(i32, char)",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [566; 567),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [570; 571),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [573; 574),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [577; 578),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "f64",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [580; 581),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "f64",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
|
|
|
range: [584; 585),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
2019-12-07 12:14:01 -06:00
|
|
|
InlayHint {
|
|
|
|
range: [627; 628),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
]
|
|
|
|
"###
|
2019-07-27 16:50:26 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-23 09:53:35 -06:00
|
|
|
fn closure_parameters() {
|
2019-07-27 16:50:26 -05:00
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let mut start = 0;
|
|
|
|
(0..2).for_each(|increment| {
|
|
|
|
start += increment;
|
2020-02-03 05:35:14 -06:00
|
|
|
});
|
2019-12-23 09:53:35 -06:00
|
|
|
|
|
|
|
let multiply = |a, b, c, d| a * b * c * d;
|
|
|
|
let _: i32 = multiply(1, 2, 3, 4);
|
2020-01-22 08:44:05 -06:00
|
|
|
let multiply_ref = &multiply;
|
2019-12-23 09:53:35 -06:00
|
|
|
|
|
|
|
let return_42 = || 42;
|
2019-07-27 16:50:26 -05:00
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-11-15 03:56:24 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
|
|
|
range: [21; 30),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [57; 66),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
2019-12-23 09:53:35 -06:00
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [115; 123),
|
2019-12-23 09:53:35 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "|…| -> i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [127; 128),
|
2019-12-23 09:53:35 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [130; 131),
|
2019-12-23 09:53:35 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [133; 134),
|
2019-12-23 09:53:35 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [136; 137),
|
2019-12-23 09:53:35 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [201; 213),
|
2020-01-22 08:44:05 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&|…| -> i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-03 05:35:14 -06:00
|
|
|
range: [236; 245),
|
2019-12-23 09:53:35 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "|| -> i32",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
]
|
|
|
|
"###
|
2019-07-27 16:50:26 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn for_expression() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let mut start = 0;
|
|
|
|
for increment in 0..2 {
|
|
|
|
start += increment;
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-11-15 03:56:24 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
|
|
|
range: [21; 30),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [44; 53),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
]
|
|
|
|
"###
|
2019-07-27 16:50:26 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn if_expr() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
enum CustomOption<T> {
|
|
|
|
None,
|
|
|
|
Some(T),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Test {
|
|
|
|
a: CustomOption<u32>,
|
|
|
|
b: u8,
|
|
|
|
}
|
|
|
|
|
2020-02-24 01:29:34 -06:00
|
|
|
use CustomOption::*;
|
|
|
|
|
2019-07-27 16:50:26 -05:00
|
|
|
fn main() {
|
2020-02-24 01:29:34 -06:00
|
|
|
let test = Some(Test { a: Some(3), b: 1 });
|
|
|
|
if let None = &test {};
|
2019-07-27 16:50:26 -05:00
|
|
|
if let test = &test {};
|
2020-02-24 01:29:34 -06:00
|
|
|
if let Some(test) = &test {};
|
|
|
|
if let Some(Test { a, b }) = &test {};
|
|
|
|
if let Some(Test { a: x, b: y }) = &test {};
|
|
|
|
if let Some(Test { a: Some(x), b: y }) = &test {};
|
|
|
|
if let Some(Test { a: None, b: y }) = &test {};
|
|
|
|
if let Some(Test { b: y, .. }) = &test {};
|
|
|
|
|
|
|
|
if test == None {}
|
2019-07-27 16:50:26 -05:00
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-11-15 03:56:24 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [188; 192),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "CustomOption<Test>",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [267; 271),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&CustomOption<Test>",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [300; 304),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&Test",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [341; 342),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&CustomOption<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [344; 345),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [387; 388),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&CustomOption<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [393; 394),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [441; 442),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u32",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [448; 449),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [500; 501),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [543; 544),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
]
|
|
|
|
"###
|
2019-07-27 16:50:26 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn while_expr() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
enum CustomOption<T> {
|
|
|
|
None,
|
|
|
|
Some(T),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Test {
|
|
|
|
a: CustomOption<u32>,
|
|
|
|
b: u8,
|
|
|
|
}
|
|
|
|
|
2020-02-24 01:29:34 -06:00
|
|
|
use CustomOption::*;
|
|
|
|
|
2019-07-27 16:50:26 -05:00
|
|
|
fn main() {
|
2020-02-24 01:29:34 -06:00
|
|
|
let test = Some(Test { a: Some(3), b: 1 });
|
|
|
|
while let None = &test {};
|
2019-07-27 16:50:26 -05:00
|
|
|
while let test = &test {};
|
2020-02-24 01:29:34 -06:00
|
|
|
while let Some(test) = &test {};
|
|
|
|
while let Some(Test { a, b }) = &test {};
|
|
|
|
while let Some(Test { a: x, b: y }) = &test {};
|
|
|
|
while let Some(Test { a: Some(x), b: y }) = &test {};
|
|
|
|
while let Some(Test { a: None, b: y }) = &test {};
|
|
|
|
while let Some(Test { b: y, .. }) = &test {};
|
|
|
|
|
|
|
|
while test == None {}
|
2019-07-27 16:50:26 -05:00
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-11-15 03:56:24 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [188; 192),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "CustomOption<Test>",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [273; 277),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&CustomOption<Test>",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [309; 313),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&Test",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [353; 354),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&CustomOption<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [356; 357),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [402; 403),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&CustomOption<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [408; 409),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [459; 460),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u32",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [466; 467),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [521; 522),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [567; 568),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "&u8",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
]
|
2019-08-07 08:14:22 -05:00
|
|
|
"###
|
2019-07-27 16:50:26 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_arm_list() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
#[derive(PartialEq)]
|
2019-08-04 16:28:36 -05:00
|
|
|
enum CustomOption<T> {
|
2019-07-27 16:50:26 -05:00
|
|
|
None,
|
|
|
|
Some(T),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Test {
|
|
|
|
a: CustomOption<u32>,
|
|
|
|
b: u8,
|
|
|
|
}
|
|
|
|
|
2020-02-24 01:29:34 -06:00
|
|
|
use CustomOption::*;
|
|
|
|
|
2019-07-27 16:50:26 -05:00
|
|
|
fn main() {
|
2020-02-24 01:29:34 -06:00
|
|
|
match Some(Test { a: Some(3), b: 1 }) {
|
|
|
|
None => (),
|
2019-07-27 16:50:26 -05:00
|
|
|
test => (),
|
2020-02-24 01:29:34 -06:00
|
|
|
Some(test) => (),
|
|
|
|
Some(Test { a, b }) => (),
|
|
|
|
Some(Test { a: x, b: y }) => (),
|
|
|
|
Some(Test { a: Some(x), b: y }) => (),
|
|
|
|
Some(Test { a: None, b: y }) => (),
|
|
|
|
Some(Test { b: y, .. }) => (),
|
2019-07-27 16:50:26 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2019-11-15 03:56:24 -06:00
|
|
|
[
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [252; 256),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "CustomOption<Test>",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [277; 281),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "Test",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [310; 311),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "CustomOption<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [313; 314),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "u8",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [348; 349),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "CustomOption<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [354; 355),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "u8",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [394; 395),
|
2019-11-15 03:56:24 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "u32",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [401; 402),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "u8",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [445; 446),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "u8",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [480; 481),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "u8",
|
|
|
|
},
|
2019-11-15 03:56:24 -06:00
|
|
|
]
|
|
|
|
"###
|
2019-07-21 12:51:27 -05:00
|
|
|
);
|
2019-07-19 16:20:09 -05:00
|
|
|
}
|
2019-11-19 10:40:38 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn hint_truncation() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
struct Smol<T>(T);
|
|
|
|
|
|
|
|
struct VeryLongOuterName<T>(T);
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let a = Smol(0u32);
|
|
|
|
let b = VeryLongOuterName(0usize);
|
|
|
|
let c = Smol(Smol(0u32))
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig { max_length: Some(8), ..Default::default() }).unwrap(), @r###"
|
2019-11-19 10:40:38 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
|
|
|
range: [74; 75),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "Smol<u32>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [98; 99),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "VeryLongOuterName<…>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
|
|
|
range: [137; 138),
|
|
|
|
kind: TypeHint,
|
|
|
|
label: "Smol<Smol<…>>",
|
|
|
|
},
|
|
|
|
]
|
|
|
|
"###
|
|
|
|
);
|
|
|
|
}
|
2020-01-14 11:02:01 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn function_call_parameter_hint() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
2020-02-23 03:49:53 -06:00
|
|
|
enum CustomOption<T> {
|
|
|
|
None,
|
|
|
|
Some(T),
|
|
|
|
}
|
2020-02-24 01:29:34 -06:00
|
|
|
use CustomOption::*;
|
2020-02-23 03:49:53 -06:00
|
|
|
|
|
|
|
struct FileId {}
|
|
|
|
struct SmolStr {}
|
|
|
|
|
|
|
|
impl From<&str> for SmolStr {
|
|
|
|
fn from(_: &str) -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TextRange {}
|
|
|
|
struct SyntaxKind {}
|
|
|
|
struct NavigationTarget {}
|
|
|
|
|
2020-01-14 11:02:01 -06:00
|
|
|
struct Test {}
|
|
|
|
|
|
|
|
impl Test {
|
2020-01-18 06:40:32 -06:00
|
|
|
fn method(&self, mut param: i32) -> i32 {
|
2020-01-14 11:02:01 -06:00
|
|
|
param * 2
|
|
|
|
}
|
2020-02-23 03:49:53 -06:00
|
|
|
|
|
|
|
fn from_syntax(
|
|
|
|
file_id: FileId,
|
|
|
|
name: SmolStr,
|
|
|
|
focus_range: CustomOption<TextRange>,
|
|
|
|
full_range: TextRange,
|
|
|
|
kind: SyntaxKind,
|
|
|
|
docs: CustomOption<String>,
|
|
|
|
description: CustomOption<String>,
|
|
|
|
) -> NavigationTarget {
|
|
|
|
NavigationTarget {}
|
|
|
|
}
|
2020-01-14 11:02:01 -06:00
|
|
|
}
|
|
|
|
|
2020-01-18 06:40:32 -06:00
|
|
|
fn test_func(mut foo: i32, bar: i32, msg: &str, _: i32, last: i32) -> i32 {
|
2020-01-14 11:02:01 -06:00
|
|
|
foo + bar
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let not_literal = 1;
|
|
|
|
let _: i32 = test_func(1, 2, "hello", 3, not_literal);
|
|
|
|
let t: Test = Test {};
|
|
|
|
t.method(123);
|
|
|
|
Test::method(&t, 3456);
|
2020-02-23 03:49:53 -06:00
|
|
|
|
|
|
|
Test::from_syntax(
|
|
|
|
FileId {},
|
|
|
|
"impl".into(),
|
2020-02-24 01:29:34 -06:00
|
|
|
None,
|
2020-02-23 03:49:53 -06:00
|
|
|
TextRange {},
|
|
|
|
SyntaxKind {},
|
2020-02-24 01:29:34 -06:00
|
|
|
None,
|
|
|
|
None,
|
2020-02-23 03:49:53 -06:00
|
|
|
);
|
2020-01-14 11:02:01 -06:00
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig::default()).unwrap(), @r###"
|
2020-01-14 11:02:01 -06:00
|
|
|
[
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [798; 809),
|
2020-01-14 11:02:01 -06:00
|
|
|
kind: TypeHint,
|
|
|
|
label: "i32",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [842; 843),
|
2020-01-14 11:02:01 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "foo",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [845; 846),
|
2020-01-14 11:02:01 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "bar",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [848; 855),
|
2020-01-14 11:02:01 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "msg",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [860; 871),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "last",
|
|
|
|
},
|
2020-01-14 11:02:01 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [914; 917),
|
2020-01-14 11:02:01 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "param",
|
|
|
|
},
|
2020-02-22 16:23:33 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [937; 939),
|
2020-02-22 16:23:33 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "&self",
|
|
|
|
},
|
2020-01-14 11:02:01 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [941; 945),
|
2020-01-14 11:02:01 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "param",
|
|
|
|
},
|
2020-02-23 03:49:53 -06:00
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [980; 989),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "file_id",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [999; 1012),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "name",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [1022; 1026),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "focus_range",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [1036; 1048),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "full_range",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [1058; 1071),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "kind",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [1081; 1085),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "docs",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-02-24 01:29:34 -06:00
|
|
|
range: [1095; 1099),
|
2020-02-23 03:49:53 -06:00
|
|
|
kind: ParameterHint,
|
|
|
|
label: "description",
|
|
|
|
},
|
2020-01-14 11:02:01 -06:00
|
|
|
]
|
|
|
|
"###
|
|
|
|
);
|
|
|
|
}
|
2020-02-23 03:49:53 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn omitted_parameters_hints_heuristics() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn map(f: i32) {}
|
|
|
|
fn filter(predicate: i32) {}
|
|
|
|
|
|
|
|
struct TestVarContainer {
|
|
|
|
test_var: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Test {}
|
|
|
|
|
|
|
|
impl Test {
|
|
|
|
fn map(self, f: i32) -> Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn filter(self, predicate: i32) -> Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-04-08 16:48:16 -05:00
|
|
|
fn field(self, value: i32) -> Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-02-23 03:49:53 -06:00
|
|
|
fn no_hints_expected(&self, _: i32, test_var: i32) {}
|
|
|
|
}
|
|
|
|
|
2020-04-08 16:48:16 -05:00
|
|
|
struct Param {}
|
|
|
|
|
2020-04-08 18:07:21 -05:00
|
|
|
fn different_order(param: &Param) {}
|
|
|
|
fn different_order_mut(param: &mut Param) {}
|
2020-04-08 16:48:16 -05:00
|
|
|
|
2020-02-23 03:49:53 -06:00
|
|
|
fn main() {
|
|
|
|
let container: TestVarContainer = TestVarContainer { test_var: 42 };
|
|
|
|
let test: Test = Test {};
|
|
|
|
|
|
|
|
map(22);
|
|
|
|
filter(33);
|
|
|
|
|
2020-04-08 16:48:16 -05:00
|
|
|
let test_processed: Test = test.map(1).filter(2).field(3);
|
2020-02-23 03:49:53 -06:00
|
|
|
|
|
|
|
let test_var: i32 = 55;
|
|
|
|
test_processed.no_hints_expected(22, test_var);
|
|
|
|
test_processed.no_hints_expected(33, container.test_var);
|
2020-04-08 16:48:16 -05:00
|
|
|
|
|
|
|
let param_begin: Param = Param {};
|
2020-04-08 18:07:21 -05:00
|
|
|
different_order(¶m_begin);
|
|
|
|
different_order(&mut param_begin);
|
2020-04-08 16:48:16 -05:00
|
|
|
|
|
|
|
let a: f64 = 7.0;
|
|
|
|
let b: f64 = 4.0;
|
|
|
|
let _: f64 = a.div_euclid(b);
|
|
|
|
let _: f64 = a.abs_sub(b);
|
2020-02-23 03:49:53 -06:00
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig { max_length: Some(8), ..Default::default() }).unwrap(), @r###"
|
2020-02-23 03:49:53 -06:00
|
|
|
[]
|
|
|
|
"###
|
|
|
|
);
|
|
|
|
}
|
2020-03-08 16:21:08 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unit_structs_have_no_type_hints() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
enum CustomResult<T, E> {
|
|
|
|
Ok(T),
|
|
|
|
Err(E),
|
|
|
|
}
|
|
|
|
use CustomResult::*;
|
|
|
|
|
|
|
|
struct SyntheticSyntax;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match Ok(()) {
|
|
|
|
Ok(_) => (),
|
|
|
|
Err(SyntheticSyntax) => (),
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig { max_length: Some(8), ..Default::default() }).unwrap(), @r###"
|
2020-03-08 16:21:08 -05:00
|
|
|
[]
|
|
|
|
"###
|
|
|
|
);
|
|
|
|
}
|
2020-03-24 13:33:00 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn chaining_hints_ignore_comments() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
struct A(B);
|
|
|
|
impl A { fn into_b(self) -> B { self.0 } }
|
2020-03-24 17:50:25 -05:00
|
|
|
struct B(C);
|
2020-03-24 13:33:00 -05:00
|
|
|
impl B { fn into_c(self) -> C { self.0 } }
|
|
|
|
struct C;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let c = A(B(C))
|
|
|
|
.into_b() // This is a comment
|
|
|
|
.into_c();
|
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ parameter_hints: false, type_hints: false, chaining_hints: true, max_length: None}).unwrap(), @r###"
|
2020-03-24 13:33:00 -05:00
|
|
|
[
|
|
|
|
InlayHint {
|
2020-03-24 17:50:25 -05:00
|
|
|
range: [232; 269),
|
2020-03-24 13:33:00 -05:00
|
|
|
kind: ChainingHint,
|
|
|
|
label: "B",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-03-24 17:50:25 -05:00
|
|
|
range: [232; 239),
|
2020-03-24 13:33:00 -05:00
|
|
|
kind: ChainingHint,
|
|
|
|
label: "A",
|
|
|
|
},
|
|
|
|
]"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn chaining_hints_without_newlines() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
struct A(B);
|
|
|
|
impl A { fn into_b(self) -> B { self.0 } }
|
2020-03-24 17:50:25 -05:00
|
|
|
struct B(C);
|
2020-03-24 13:33:00 -05:00
|
|
|
impl B { fn into_c(self) -> C { self.0 } }
|
|
|
|
struct C;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let c = A(B(C)).into_b().into_c();
|
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ parameter_hints: false, type_hints: false, chaining_hints: true, max_length: None}).unwrap(), @r###"[]"###);
|
2020-03-24 13:33:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_access_chaining_hints() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
struct A { pub b: B }
|
|
|
|
struct B { pub c: C }
|
|
|
|
struct C(pub bool);
|
2020-03-31 13:25:03 -05:00
|
|
|
struct D;
|
|
|
|
|
|
|
|
impl D {
|
|
|
|
fn foo(&self) -> i32 { 42 }
|
|
|
|
}
|
2020-03-24 13:33:00 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = A { b: B { c: C(true) } }
|
|
|
|
.b
|
|
|
|
.c
|
|
|
|
.0;
|
2020-03-31 13:25:03 -05:00
|
|
|
let x = D
|
|
|
|
.foo();
|
2020-03-24 13:33:00 -05:00
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ parameter_hints: false, type_hints: false, chaining_hints: true, max_length: None}).unwrap(), @r###"
|
2020-03-24 13:33:00 -05:00
|
|
|
[
|
|
|
|
InlayHint {
|
2020-03-31 13:25:03 -05:00
|
|
|
range: [252; 323),
|
2020-03-24 13:33:00 -05:00
|
|
|
kind: ChainingHint,
|
|
|
|
label: "C",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-03-31 13:25:03 -05:00
|
|
|
range: [252; 300),
|
2020-03-24 13:33:00 -05:00
|
|
|
kind: ChainingHint,
|
|
|
|
label: "B",
|
|
|
|
},
|
2020-03-31 13:25:03 -05:00
|
|
|
]
|
|
|
|
"###);
|
2020-03-24 13:33:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn generic_chaining_hints() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
2020-03-24 14:31:02 -05:00
|
|
|
struct A<T>(T);
|
2020-03-24 13:33:00 -05:00
|
|
|
struct B<T>(T);
|
|
|
|
struct C<T>(T);
|
|
|
|
struct X<T,R>(T, R);
|
2020-03-24 14:31:02 -05:00
|
|
|
|
2020-03-24 13:33:00 -05:00
|
|
|
impl<T> A<T> {
|
|
|
|
fn new(t: T) -> Self { A(t) }
|
|
|
|
fn into_b(self) -> B<T> { B(self.0) }
|
|
|
|
}
|
|
|
|
impl<T> B<T> {
|
|
|
|
fn into_c(self) -> C<T> { C(self.0) }
|
|
|
|
}
|
|
|
|
fn main() {
|
|
|
|
let c = A::new(X(42, true))
|
|
|
|
.into_b()
|
|
|
|
.into_c();
|
|
|
|
}"#,
|
|
|
|
);
|
2020-03-31 09:02:55 -05:00
|
|
|
assert_debug_snapshot!(analysis.inlay_hints(file_id, &InlayHintsConfig{ parameter_hints: false, type_hints: false, chaining_hints: true, max_length: None}).unwrap(), @r###"
|
2020-03-24 13:33:00 -05:00
|
|
|
[
|
|
|
|
InlayHint {
|
2020-03-24 14:31:02 -05:00
|
|
|
range: [403; 452),
|
2020-03-24 13:33:00 -05:00
|
|
|
kind: ChainingHint,
|
|
|
|
label: "B<X<i32, bool>>",
|
|
|
|
},
|
|
|
|
InlayHint {
|
2020-03-24 14:31:02 -05:00
|
|
|
range: [403; 422),
|
2020-03-24 13:33:00 -05:00
|
|
|
kind: ChainingHint,
|
|
|
|
label: "A<X<i32, bool>>",
|
|
|
|
},
|
|
|
|
]"###);
|
|
|
|
}
|
2019-07-19 16:20:09 -05:00
|
|
|
}
|