diff options
author | Aleksey Kladov <[email protected]> | 2021-01-09 11:45:47 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-01-09 11:45:47 +0000 |
commit | c6150a370616ebb918620623bae24855a6d8cb65 (patch) | |
tree | 5546826caf4df78fc8787fbbefda09f32e03ecc9 | |
parent | 64a6ee45351a71cdeb1d1dddc8fc746abdcff07b (diff) |
Reorder modules
-rw-r--r-- | crates/ide/src/syntax_highlighting.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ide/src/syntax_highlighting.rs b/crates/ide/src/syntax_highlighting.rs index d73ddf35b..086c1245e 100644 --- a/crates/ide/src/syntax_highlighting.rs +++ b/crates/ide/src/syntax_highlighting.rs | |||
@@ -1,11 +1,13 @@ | |||
1 | pub(crate) mod tags; | ||
2 | |||
1 | mod highlights; | 3 | mod highlights; |
2 | mod injector; | 4 | mod injector; |
3 | 5 | ||
4 | mod format; | 6 | mod format; |
5 | mod html; | ||
6 | mod injection; | 7 | mod injection; |
7 | mod macro_rules; | 8 | mod macro_rules; |
8 | pub(crate) mod tags; | 9 | |
10 | mod html; | ||
9 | #[cfg(test)] | 11 | #[cfg(test)] |
10 | mod tests; | 12 | mod tests; |
11 | 13 | ||