diff options
author | Jeremy Kolb <[email protected]> | 2019-12-18 14:11:47 +0000 |
---|---|---|
committer | Jeremy Kolb <[email protected]> | 2019-12-18 14:11:47 +0000 |
commit | 83dc5e79497bdded6143c812c97e009ddc783f1a (patch) | |
tree | 840e63a840ccf9626c1898187576b2f169417304 | |
parent | cdc6af6bda50641a061608f433ec2cff53bf66d3 (diff) |
cargo fmt
-rw-r--r-- | crates/ra_ide/src/call_info.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/ra_ide/src/call_info.rs b/crates/ra_ide/src/call_info.rs index 3495cfa6d..2c2b6fa48 100644 --- a/crates/ra_ide/src/call_info.rs +++ b/crates/ra_ide/src/call_info.rs | |||
@@ -7,7 +7,9 @@ use ra_syntax::{ | |||
7 | }; | 7 | }; |
8 | use test_utils::tested_by; | 8 | use test_utils::tested_by; |
9 | 9 | ||
10 | use crate::{db::RootDatabase, expand::descend_into_macros, CallInfo, FilePosition, FunctionSignature}; | 10 | use crate::{ |
11 | db::RootDatabase, expand::descend_into_macros, CallInfo, FilePosition, FunctionSignature, | ||
12 | }; | ||
11 | 13 | ||
12 | /// Computes parameter information for the given call expression. | 14 | /// Computes parameter information for the given call expression. |
13 | pub(crate) fn call_info(db: &RootDatabase, position: FilePosition) -> Option<CallInfo> { | 15 | pub(crate) fn call_info(db: &RootDatabase, position: FilePosition) -> Option<CallInfo> { |