mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-04 17:40:50 +00:00
flatten modules
This commit is contained in:
parent
9f6883fbf1
commit
a4a1e08ab8
15 changed files with 37 additions and 40 deletions
|
@ -1,13 +1,12 @@
|
|||
pub mod syntax_error;
|
||||
mod syntax_text;
|
||||
|
||||
use std::{fmt, borrow::Borrow};
|
||||
|
||||
use self::syntax_text::SyntaxText;
|
||||
use crate::{SmolStr, SyntaxKind, TextRange};
|
||||
use rowan::{Types, TransparentNewType};
|
||||
|
||||
pub use self::syntax_error::{SyntaxError, SyntaxErrorKind, Location};
|
||||
use crate::{
|
||||
SmolStr, SyntaxKind, TextRange, SyntaxText,
|
||||
syntax_error::SyntaxError,
|
||||
};
|
||||
|
||||
pub use rowan::WalkEvent;
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue