Add an integration test for replicating buffer's diagnostics

This commit is contained in:
Max Brunsfeld 2021-11-02 14:57:24 -07:00
parent 89392cd23d
commit a66b81d60a
5 changed files with 116 additions and 2 deletions

View file

@ -1,4 +1,4 @@
pub use language::{Language, LanguageRegistry};
pub use language::{Buffer, Diagnostic, Language, LanguageRegistry, Point};
use rust_embed::RustEmbed;
use std::borrow::Cow;
use std::{str, sync::Arc};

View file

@ -15,6 +15,7 @@ use gpui::{
platform::WindowOptions,
ModelHandle, MutableAppContext, PathPromptOptions, Task, ViewContext,
};
pub use lsp;
use parking_lot::Mutex;
pub use people_panel;
use people_panel::PeoplePanel;