diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_analysis/src/descriptors.rs | 2 | ||||
-rw-r--r-- | crates/ra_analysis/src/imp.rs | 2 | ||||
-rw-r--r-- | crates/ra_analysis/src/job.rs | 2 | ||||
-rw-r--r-- | crates/ra_analysis/tests/tests.rs | 4 | ||||
-rw-r--r-- | crates/ra_editor/src/scope/fn_scope.rs | 4 | ||||
-rw-r--r-- | crates/ra_editor/src/scope/mod_scope.rs | 18 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/mod.rs | 2 |
7 files changed, 17 insertions, 17 deletions
diff --git a/crates/ra_analysis/src/descriptors.rs b/crates/ra_analysis/src/descriptors.rs index dced99b07..3fca3e581 100644 --- a/crates/ra_analysis/src/descriptors.rs +++ b/crates/ra_analysis/src/descriptors.rs | |||
@@ -232,7 +232,7 @@ pub struct FnDescriptor { | |||
232 | } | 232 | } |
233 | 233 | ||
234 | impl FnDescriptor { | 234 | impl FnDescriptor { |
235 | pub fn new_opt(node: ast::FnDef) -> Option<Self> { | 235 | pub fn new(node: ast::FnDef) -> Option<Self> { |
236 | let name = node.name()?.text().to_string(); | 236 | let name = node.name()?.text().to_string(); |
237 | 237 | ||
238 | // Strip the body out for the label. | 238 | // Strip the body out for the label. |
diff --git a/crates/ra_analysis/src/imp.rs b/crates/ra_analysis/src/imp.rs index b4faf0b5b..2ed6694ba 100644 --- a/crates/ra_analysis/src/imp.rs +++ b/crates/ra_analysis/src/imp.rs | |||
@@ -362,7 +362,7 @@ impl AnalysisImpl { | |||
362 | for (_, fs) in file_symbols { | 362 | for (_, fs) in file_symbols { |
363 | if fs.kind == FN_DEF { | 363 | if fs.kind == FN_DEF { |
364 | if let Some(fn_def) = find_node_at_offset(syntax, fs.node_range.start()) { | 364 | if let Some(fn_def) = find_node_at_offset(syntax, fs.node_range.start()) { |
365 | if let Some(descriptor) = FnDescriptor::new_opt(fn_def) { | 365 | if let Some(descriptor) = FnDescriptor::new(fn_def) { |
366 | // If we have a calling expression let's find which argument we are on | 366 | // If we have a calling expression let's find which argument we are on |
367 | let mut current_parameter = None; | 367 | let mut current_parameter = None; |
368 | 368 | ||
diff --git a/crates/ra_analysis/src/job.rs b/crates/ra_analysis/src/job.rs index 57215c862..2871f9839 100644 --- a/crates/ra_analysis/src/job.rs +++ b/crates/ra_analysis/src/job.rs | |||
@@ -11,7 +11,7 @@ pub struct JobToken { | |||
11 | } | 11 | } |
12 | 12 | ||
13 | impl JobHandle { | 13 | impl JobHandle { |
14 | pub fn new_pair() -> (JobHandle, JobToken) { | 14 | pub fn new() -> (JobHandle, JobToken) { |
15 | let (sender_alive, receiver_alive) = bounded(0); | 15 | let (sender_alive, receiver_alive) = bounded(0); |
16 | let (sender_canceled, receiver_canceled) = bounded(0); | 16 | let (sender_canceled, receiver_canceled) = bounded(0); |
17 | let token = JobToken { | 17 | let token = JobToken { |
diff --git a/crates/ra_analysis/tests/tests.rs b/crates/ra_analysis/tests/tests.rs index 3302e1151..e0c637d65 100644 --- a/crates/ra_analysis/tests/tests.rs +++ b/crates/ra_analysis/tests/tests.rs | |||
@@ -62,7 +62,7 @@ fn get_signature(text: &str) -> (FnDescriptor, Option<usize>) { | |||
62 | let (offset, code) = extract_offset(text); | 62 | let (offset, code) = extract_offset(text); |
63 | let code = code.as_str(); | 63 | let code = code.as_str(); |
64 | 64 | ||
65 | let (_handle, token) = JobHandle::new_pair(); | 65 | let (_handle, token) = JobHandle::new(); |
66 | let snap = analysis(&[("/lib.rs", code)]); | 66 | let snap = analysis(&[("/lib.rs", code)]); |
67 | 67 | ||
68 | snap.resolve_callable(FileId(1), offset, &token).unwrap() | 68 | snap.resolve_callable(FileId(1), offset, &token).unwrap() |
@@ -71,7 +71,7 @@ fn get_signature(text: &str) -> (FnDescriptor, Option<usize>) { | |||
71 | #[test] | 71 | #[test] |
72 | fn test_resolve_module() { | 72 | fn test_resolve_module() { |
73 | let snap = analysis(&[("/lib.rs", "mod foo;"), ("/foo.rs", "")]); | 73 | let snap = analysis(&[("/lib.rs", "mod foo;"), ("/foo.rs", "")]); |
74 | let (_handle, token) = JobHandle::new_pair(); | 74 | let (_handle, token) = JobHandle::new(); |
75 | let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into(), &token); | 75 | let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into(), &token); |
76 | assert_eq_dbg( | 76 | assert_eq_dbg( |
77 | r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#, | 77 | r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#, |
diff --git a/crates/ra_editor/src/scope/fn_scope.rs b/crates/ra_editor/src/scope/fn_scope.rs index 84f036c7e..9088e5a60 100644 --- a/crates/ra_editor/src/scope/fn_scope.rs +++ b/crates/ra_editor/src/scope/fn_scope.rs | |||
@@ -63,7 +63,7 @@ impl FnScopes { | |||
63 | .syntax() | 63 | .syntax() |
64 | .descendants() | 64 | .descendants() |
65 | .filter_map(ast::BindPat::cast) | 65 | .filter_map(ast::BindPat::cast) |
66 | .filter_map(ScopeEntry::new_opt); | 66 | .filter_map(ScopeEntry::new); |
67 | self.scopes[scope].entries.extend(entries); | 67 | self.scopes[scope].entries.extend(entries); |
68 | } | 68 | } |
69 | fn add_params_bindings(&mut self, scope: ScopeId, params: Option<ast::ParamList>) { | 69 | fn add_params_bindings(&mut self, scope: ScopeId, params: Option<ast::ParamList>) { |
@@ -88,7 +88,7 @@ pub struct ScopeEntry { | |||
88 | } | 88 | } |
89 | 89 | ||
90 | impl ScopeEntry { | 90 | impl ScopeEntry { |
91 | fn new_opt(pat: ast::BindPat) -> Option<ScopeEntry> { | 91 | fn new(pat: ast::BindPat) -> Option<ScopeEntry> { |
92 | if pat.name().is_some() { | 92 | if pat.name().is_some() { |
93 | Some(ScopeEntry { | 93 | Some(ScopeEntry { |
94 | syntax: pat.syntax().owned(), | 94 | syntax: pat.syntax().owned(), |
diff --git a/crates/ra_editor/src/scope/mod_scope.rs b/crates/ra_editor/src/scope/mod_scope.rs index 956ee0e2f..8d7e408f8 100644 --- a/crates/ra_editor/src/scope/mod_scope.rs +++ b/crates/ra_editor/src/scope/mod_scope.rs | |||
@@ -22,14 +22,14 @@ impl ModuleScope { | |||
22 | let mut entries = Vec::new(); | 22 | let mut entries = Vec::new(); |
23 | for item in items { | 23 | for item in items { |
24 | let entry = match item { | 24 | let entry = match item { |
25 | ast::ModuleItem::StructDef(item) => Entry::new_item(item), | 25 | ast::ModuleItem::StructDef(item) => Entry::new(item), |
26 | ast::ModuleItem::EnumDef(item) => Entry::new_item(item), | 26 | ast::ModuleItem::EnumDef(item) => Entry::new(item), |
27 | ast::ModuleItem::FnDef(item) => Entry::new_item(item), | 27 | ast::ModuleItem::FnDef(item) => Entry::new(item), |
28 | ast::ModuleItem::ConstDef(item) => Entry::new_item(item), | 28 | ast::ModuleItem::ConstDef(item) => Entry::new(item), |
29 | ast::ModuleItem::StaticDef(item) => Entry::new_item(item), | 29 | ast::ModuleItem::StaticDef(item) => Entry::new(item), |
30 | ast::ModuleItem::TraitDef(item) => Entry::new_item(item), | 30 | ast::ModuleItem::TraitDef(item) => Entry::new(item), |
31 | ast::ModuleItem::TypeDef(item) => Entry::new_item(item), | 31 | ast::ModuleItem::TypeDef(item) => Entry::new(item), |
32 | ast::ModuleItem::Module(item) => Entry::new_item(item), | 32 | ast::ModuleItem::Module(item) => Entry::new(item), |
33 | ast::ModuleItem::UseItem(item) => { | 33 | ast::ModuleItem::UseItem(item) => { |
34 | if let Some(tree) = item.use_tree() { | 34 | if let Some(tree) = item.use_tree() { |
35 | collect_imports(tree, &mut entries); | 35 | collect_imports(tree, &mut entries); |
@@ -50,7 +50,7 @@ impl ModuleScope { | |||
50 | } | 50 | } |
51 | 51 | ||
52 | impl Entry { | 52 | impl Entry { |
53 | fn new_item<'a>(item: impl ast::NameOwner<'a>) -> Option<Entry> { | 53 | fn new<'a>(item: impl ast::NameOwner<'a>) -> Option<Entry> { |
54 | let name = item.name()?; | 54 | let name = item.name()?; |
55 | Some(Entry { | 55 | Some(Entry { |
56 | node: name.syntax().owned(), | 56 | node: name.syntax().owned(), |
diff --git a/crates/ra_lsp_server/src/main_loop/mod.rs b/crates/ra_lsp_server/src/main_loop/mod.rs index 2623ab84e..a11baf4aa 100644 --- a/crates/ra_lsp_server/src/main_loop/mod.rs +++ b/crates/ra_lsp_server/src/main_loop/mod.rs | |||
@@ -355,7 +355,7 @@ impl<'a> PoolDispatcher<'a> { | |||
355 | }; | 355 | }; |
356 | match req.cast::<R>() { | 356 | match req.cast::<R>() { |
357 | Ok((id, params)) => { | 357 | Ok((id, params)) => { |
358 | let (handle, token) = JobHandle::new_pair(); | 358 | let (handle, token) = JobHandle::new(); |
359 | let world = self.world.snapshot(); | 359 | let world = self.world.snapshot(); |
360 | let sender = self.sender.clone(); | 360 | let sender = self.sender.clone(); |
361 | self.pool.spawn(move || { | 361 | self.pool.spawn(move || { |