From 156d9954236e8dba849bee939c094c337120780a Mon Sep 17 00:00:00 2001 From: Ayomide Bamidele <48062697+MozarellaMan@users.noreply.github.com> Date: Fri, 28 May 2021 12:39:02 +0100 Subject: Folding range for return types --- crates/ide/src/folding_ranges.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'crates/ide/src/folding_ranges.rs') diff --git a/crates/ide/src/folding_ranges.rs b/crates/ide/src/folding_ranges.rs index b893c1c54..ce8473d94 100755 --- a/crates/ide/src/folding_ranges.rs +++ b/crates/ide/src/folding_ranges.rs @@ -19,6 +19,7 @@ pub enum FoldKind { Statics, Array, WhereClause, + ReturnType, } #[derive(Debug)] @@ -131,6 +132,7 @@ fn fold_kind(kind: SyntaxKind) -> Option { COMMENT => Some(FoldKind::Comment), ARG_LIST | PARAM_LIST => Some(FoldKind::ArgList), ARRAY_EXPR => Some(FoldKind::Array), + RET_TYPE => Some(FoldKind::ReturnType), ASSOC_ITEM_LIST | RECORD_FIELD_LIST | RECORD_PAT_FIELD_LIST @@ -300,6 +302,7 @@ mod tests { FoldKind::Statics => "statics", FoldKind::Array => "array", FoldKind::WhereClause => "whereclause", + FoldKind::ReturnType => "returntype", }; assert_eq!(kind, &attr.unwrap()); } @@ -560,4 +563,16 @@ where "#, ) } + + #[test] + fn fold_return_type() { + check( + r#" +fn foo()-> ( + bool, + bool, +) { (true, true) } + "#, + ) + } } -- cgit v1.2.3