aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_ssr/src/from_comment.rs
diff options
context:
space:
mode:
authorJosh Mcguigan <[email protected]>2021-03-09 05:11:28 +0000
committerJosh Mcguigan <[email protected]>2021-03-10 14:02:15 +0000
commit09307be75b452bd7a10b3855b5d43083cca140a1 (patch)
tree5c1e05f3b1afa70492d37384fd94b989d49d80c5 /crates/ide_ssr/src/from_comment.rs
parenta9b1e5cde1cc6e470be60cf2c230b99a62c2d2c3 (diff)
add apply ssr assist
Diffstat (limited to 'crates/ide_ssr/src/from_comment.rs')
-rw-r--r--crates/ide_ssr/src/from_comment.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/crates/ide_ssr/src/from_comment.rs b/crates/ide_ssr/src/from_comment.rs
new file mode 100644
index 000000000..f1b312284
--- /dev/null
+++ b/crates/ide_ssr/src/from_comment.rs
@@ -0,0 +1,32 @@
1//! This module allows building an SSR MatchFinder by parsing the SSR rule
2//! from a comment.
3
4use ide_db::{
5 base_db::{FilePosition, FileRange, SourceDatabase},
6 RootDatabase,
7};
8use syntax::{
9 ast::{self, AstNode, AstToken},
10 TextRange,
11};
12
13use crate::MatchFinder;
14
15/// Attempts to build an SSR MatchFinder from a comment at the given file
16/// range. If successful, returns the MatchFinder and a TextRange covering
17/// comment.
18pub fn ssr_from_comment(db: &RootDatabase, frange: FileRange) -> Option<(MatchFinder, TextRange)> {
19 let comment = {
20 let file = db.parse(frange.file_id);
21 file.tree().syntax().token_at_offset(frange.range.start()).find_map(ast::Comment::cast)
22 }?;
23 let comment_text_without_prefix = comment.text().strip_prefix(comment.prefix()).unwrap();
24 let ssr_rule = comment_text_without_prefix.parse().ok()?;
25
26 let lookup_context = FilePosition { file_id: frange.file_id, offset: frange.range.start() };
27
28 let mut match_finder = MatchFinder::in_context(db, lookup_context, vec![]);
29 match_finder.add_rule(ssr_rule).ok()?;
30
31 Some((match_finder, comment.syntax().text_range()))
32}