aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-02-20 13:24:39 +0000
committerAleksey Kladov <[email protected]>2019-02-20 13:24:39 +0000
commit45fc91cc470fa91d5b8905fea2cab4d42bbe72b3 (patch)
treec658e52cb6b3628ab0022b43efa1d613b4c7964a /crates/ra_syntax/src/lib.rs
parenta4a1e08ab81193112a2e14413d084916241c3fca (diff)
rearrange modules in a suggestd reading order
Diffstat (limited to 'crates/ra_syntax/src/lib.rs')
-rw-r--r--crates/ra_syntax/src/lib.rs17
1 files changed, 9 insertions, 8 deletions
diff --git a/crates/ra_syntax/src/lib.rs b/crates/ra_syntax/src/lib.rs
index edd5b4a28..b12282b39 100644
--- a/crates/ra_syntax/src/lib.rs
+++ b/crates/ra_syntax/src/lib.rs
@@ -16,18 +16,19 @@
16#![allow(missing_docs)] 16#![allow(missing_docs)]
17//#![warn(unreachable_pub)] // rust-lang/rust#47816 17//#![warn(unreachable_pub)] // rust-lang/rust#47816
18 18
19pub mod algo; 19mod syntax_kinds;
20pub mod ast; 20mod syntax_node;
21mod syntax_text;
22mod syntax_error;
21mod parsing; 23mod parsing;
22mod string_lexing; 24mod string_lexing;
23mod syntax_kinds;
24/// Utilities for simple uses of the parser.
25pub mod utils;
26mod validation; 25mod validation;
27mod syntax_node;
28mod ptr; 26mod ptr;
29mod syntax_error; 27
30mod syntax_text; 28pub mod algo;
29pub mod ast;
30/// Utilities for simple uses of the parser.
31pub mod utils;
31 32
32pub use rowan::{SmolStr, TextRange, TextUnit}; 33pub use rowan::{SmolStr, TextRange, TextUnit};
33pub use crate::{ 34pub use crate::{