mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
rearrange modules in a suggestd reading order
This commit is contained in:
parent
a4a1e08ab8
commit
45fc91cc47
2 changed files with 10 additions and 9 deletions
|
@ -16,18 +16,19 @@
|
|||
#![allow(missing_docs)]
|
||||
//#![warn(unreachable_pub)] // rust-lang/rust#47816
|
||||
|
||||
pub mod algo;
|
||||
pub mod ast;
|
||||
mod syntax_kinds;
|
||||
mod syntax_node;
|
||||
mod syntax_text;
|
||||
mod syntax_error;
|
||||
mod parsing;
|
||||
mod string_lexing;
|
||||
mod syntax_kinds;
|
||||
mod validation;
|
||||
mod ptr;
|
||||
|
||||
pub mod algo;
|
||||
pub mod ast;
|
||||
/// Utilities for simple uses of the parser.
|
||||
pub mod utils;
|
||||
mod validation;
|
||||
mod syntax_node;
|
||||
mod ptr;
|
||||
mod syntax_error;
|
||||
mod syntax_text;
|
||||
|
||||
pub use rowan::{SmolStr, TextRange, TextUnit};
|
||||
pub use crate::{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue