Cleanup: use doc.selection() instead of doc.state.selection().

This commit is contained in:
Blaž Hrastnik 2021-03-14 10:04:03 +09:00
parent 3445abf88e
commit 1cf887dea9
8 changed files with 18 additions and 21 deletions

View file

@ -1578,7 +1578,7 @@ fn test_input_edits() {
let edits = LanguageLayer::generate_edits(state.doc.slice(..), &transaction.changes);
transaction.apply(&mut state);
assert_eq!(state.doc(), "fn test(a: u32) {}");
assert_eq!(state.doc, "fn test(a: u32) {}");
assert_eq!(
edits,
&[InputEdit {