rust/crates/ra_ide_api_light/src/typing.rs

340 lines
9.4 KiB
Rust
Raw Normal View History

2018-09-16 11:54:24 +02:00
use ra_syntax::{
2019-01-11 12:57:19 +01:00
AstNode, SourceFile, SyntaxKind::*,
SyntaxNode, TextUnit, TextRange,
2019-01-10 15:50:49 +01:00
algo::{find_node_at_offset, find_leaf_at_offset, LeafAtOffset},
2019-01-11 12:57:19 +01:00
ast::{self, AstToken},
2018-08-23 19:55:23 +02:00
};
2019-01-11 12:57:19 +01:00
use crate::{LocalEdit, TextEditBuilder, formatting::leading_indent};
2018-08-23 19:55:23 +02:00
2019-01-07 14:53:24 +01:00
pub fn on_enter(file: &SourceFile, offset: TextUnit) -> Option<LocalEdit> {
let comment = find_leaf_at_offset(file.syntax(), offset)
.left_biased()
2018-10-18 01:25:37 +02:00
.and_then(ast::Comment::cast)?;
2018-10-11 16:25:35 +02:00
if let ast::CommentFlavor::Multiline = comment.flavor() {
return None;
}
let prefix = comment.prefix();
if offset < comment.syntax().range().start() + TextUnit::of_str(prefix) + TextUnit::from(1) {
return None;
}
2018-10-11 16:25:35 +02:00
let indent = node_indent(file, comment.syntax())?;
let inserted = format!("\n{}{} ", indent, prefix);
let cursor_position = offset + TextUnit::of_str(&inserted);
2019-01-03 16:59:17 +01:00
let mut edit = TextEditBuilder::default();
edit.insert(offset, inserted);
Some(LocalEdit {
label: "on enter".to_string(),
edit: edit.finish(),
cursor_position: Some(cursor_position),
})
}
2019-01-07 14:53:24 +01:00
fn node_indent<'a>(file: &'a SourceFile, node: &SyntaxNode) -> Option<&'a str> {
let ws = match find_leaf_at_offset(file.syntax(), node.range().start()) {
LeafAtOffset::Between(l, r) => {
assert!(r == node);
l
}
LeafAtOffset::Single(n) => {
assert!(n == node);
return Some("");
}
LeafAtOffset::None => unreachable!(),
};
if ws.kind() != WHITESPACE {
return None;
}
let text = ws.leaf_text().unwrap();
let pos = text.as_str().rfind('\n').map(|it| it + 1).unwrap_or(0);
Some(&text[pos..])
}
2019-01-11 12:57:19 +01:00
pub fn on_eq_typed(file: &SourceFile, eq_offset: TextUnit) -> Option<LocalEdit> {
assert_eq!(file.syntax().text().char_at(eq_offset), Some('='));
let let_stmt: &ast::LetStmt = find_node_at_offset(file.syntax(), eq_offset)?;
2018-08-28 10:12:42 +02:00
if let_stmt.has_semi() {
return None;
}
if let Some(expr) = let_stmt.initializer() {
let expr_range = expr.syntax().range();
2019-01-11 12:57:19 +01:00
if expr_range.contains(eq_offset) && eq_offset != expr_range.start() {
2018-08-28 10:12:42 +02:00
return None;
}
if file
.syntax()
.text()
2019-01-11 12:57:19 +01:00
.slice(eq_offset..expr_range.start())
.contains('\n')
{
2018-08-28 20:45:59 +02:00
return None;
}
2018-08-28 10:17:08 +02:00
} else {
return None;
2018-08-28 10:12:42 +02:00
}
let offset = let_stmt.syntax().range().end();
2019-01-03 16:59:17 +01:00
let mut edit = TextEditBuilder::default();
2018-08-28 10:12:42 +02:00
edit.insert(offset, ";".to_string());
2018-08-29 17:03:14 +02:00
Some(LocalEdit {
label: "add semicolon".to_string(),
2018-08-28 10:12:42 +02:00
edit: edit.finish(),
cursor_position: None,
})
}
2019-01-11 12:57:19 +01:00
pub fn on_dot_typed(file: &SourceFile, dot_offset: TextUnit) -> Option<LocalEdit> {
assert_eq!(file.syntax().text().char_at(dot_offset), Some('.'));
2019-01-06 00:58:03 +01:00
2019-01-11 12:57:19 +01:00
let whitespace = find_leaf_at_offset(file.syntax(), dot_offset)
.left_biased()
.and_then(ast::Whitespace::cast)?;
2019-01-06 21:59:14 +01:00
2019-01-11 12:57:19 +01:00
let current_indent = {
let text = whitespace.text();
let newline = text.rfind('\n')?;
&text[newline + 1..]
};
let current_indent_len = TextUnit::of_str(current_indent);
2019-01-06 21:59:14 +01:00
2019-01-11 12:57:19 +01:00
// Make sure dot is a part of call chain
let field_expr = whitespace
.syntax()
.parent()
.and_then(ast::FieldExpr::cast)?;
let prev_indent = leading_indent(field_expr.syntax())?;
let target_indent = format!(" {}", prev_indent);
let target_indent_len = TextUnit::of_str(&target_indent);
if current_indent_len == target_indent_len {
return None;
}
2019-01-06 00:58:03 +01:00
let mut edit = TextEditBuilder::default();
2019-01-11 12:57:19 +01:00
edit.replace(
TextRange::from_to(dot_offset - current_indent_len, dot_offset),
target_indent.into(),
);
let res = LocalEdit {
label: "reindent dot".to_string(),
2019-01-06 00:58:03 +01:00
edit: edit.finish(),
2019-01-11 12:57:19 +01:00
cursor_position: Some(
dot_offset + target_indent_len - current_indent_len + TextUnit::of_char('.'),
),
};
Some(res)
2019-01-06 21:59:14 +01:00
}
2018-08-28 13:47:12 +02:00
#[cfg(test)]
mod tests {
2019-01-10 15:50:49 +01:00
use crate::test_utils::{add_cursor, assert_eq_text, extract_offset};
2018-10-11 17:11:00 +02:00
2019-01-10 15:50:49 +01:00
use super::*;
2018-08-28 13:47:12 +02:00
#[test]
fn test_on_eq_typed() {
fn do_check(before: &str, after: &str) {
let (offset, before) = extract_offset(before);
2019-01-07 14:53:24 +01:00
let file = SourceFile::parse(&before);
2018-08-28 13:47:12 +02:00
let result = on_eq_typed(&file, offset).unwrap();
let actual = result.edit.apply(&before);
assert_eq_text!(after, &actual);
}
// do_check(r"
// fn foo() {
// let foo =<|>
// }
// ", r"
// fn foo() {
// let foo =;
// }
// ");
do_check(
r"
2018-08-28 13:47:12 +02:00
fn foo() {
2019-01-11 12:57:19 +01:00
let foo <|>= 1 + 1
2018-08-28 13:47:12 +02:00
}
",
r"
2018-08-28 13:47:12 +02:00
fn foo() {
let foo = 1 + 1;
}
",
);
2018-08-28 13:47:12 +02:00
// do_check(r"
// fn foo() {
// let foo =<|>
// let bar = 1;
// }
// ", r"
// fn foo() {
// let foo =;
// let bar = 1;
// }
// ");
}
2019-01-06 00:58:03 +01:00
#[test]
fn test_on_dot_typed() {
fn do_check(before: &str, after: &str) {
let (offset, before) = extract_offset(before);
2019-01-07 14:53:24 +01:00
let file = SourceFile::parse(&before);
2019-01-11 12:57:19 +01:00
if let Some(result) = on_dot_typed(&file, offset) {
2019-01-06 21:59:14 +01:00
let actual = result.edit.apply(&before);
assert_eq_text!(after, &actual);
2019-01-11 12:57:19 +01:00
} else {
assert_eq_text!(&before, after)
2019-01-06 21:59:14 +01:00
};
2019-01-06 00:58:03 +01:00
}
2019-01-06 12:24:33 +01:00
// indent if continuing chain call
2019-01-06 00:58:03 +01:00
do_check(
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
<|>.
}
",
2019-01-06 00:58:03 +01:00
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.
}
",
2019-01-06 12:24:33 +01:00
);
// do not indent if already indented
do_check(
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
<|>.
}
",
2019-01-06 12:24:33 +01:00
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.
}
",
2019-01-06 12:24:33 +01:00
);
// indent if the previous line is already indented
do_check(
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
<|>.
}
",
2019-01-06 12:24:33 +01:00
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
.
}
",
2019-01-06 12:24:33 +01:00
);
// don't indent if indent matches previous line
do_check(
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
<|>.
}
",
2019-01-06 12:24:33 +01:00
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
.
}
",
2019-01-06 21:59:14 +01:00
);
// don't indent if there is no method call on previous line
do_check(
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
<|>.
}
",
2019-01-06 21:59:14 +01:00
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
.
}
",
2019-01-06 21:59:14 +01:00
);
// indent to match previous expr
do_check(
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
<|>.
}
",
2019-01-06 21:59:14 +01:00
r"
2019-01-11 12:57:19 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.
}
",
2019-01-06 00:58:03 +01:00
);
}
#[test]
fn test_on_enter() {
fn apply_on_enter(before: &str) -> Option<String> {
let (offset, before) = extract_offset(before);
2019-01-07 14:53:24 +01:00
let file = SourceFile::parse(&before);
let result = on_enter(&file, offset)?;
let actual = result.edit.apply(&before);
let actual = add_cursor(&actual, result.cursor_position.unwrap());
Some(actual)
}
fn do_check(before: &str, after: &str) {
let actual = apply_on_enter(before).unwrap();
assert_eq_text!(after, &actual);
}
fn do_check_noop(text: &str) {
assert!(apply_on_enter(text).is_none())
}
do_check(
r"
/// Some docs<|>
fn foo() {
}
",
r"
/// Some docs
/// <|>
fn foo() {
}
",
);
do_check(
r"
impl S {
/// Some<|> docs.
fn foo() {}
}
",
r"
impl S {
/// Some
/// <|> docs.
fn foo() {}
}
",
);
do_check_noop(r"<|>//! docz");
}
2018-08-28 13:47:12 +02:00
}