aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/syntax_highlighting.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-01-09 11:45:47 +0000
committerAleksey Kladov <[email protected]>2021-01-09 11:45:47 +0000
commitc6150a370616ebb918620623bae24855a6d8cb65 (patch)
tree5546826caf4df78fc8787fbbefda09f32e03ecc9 /crates/ide/src/syntax_highlighting.rs
parent64a6ee45351a71cdeb1d1dddc8fc746abdcff07b (diff)
Reorder modules
Diffstat (limited to 'crates/ide/src/syntax_highlighting.rs')
-rw-r--r--crates/ide/src/syntax_highlighting.rs6
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 @@
1pub(crate) mod tags;
2
1mod highlights; 3mod highlights;
2mod injector; 4mod injector;
3 5
4mod format; 6mod format;
5mod html;
6mod injection; 7mod injection;
7mod macro_rules; 8mod macro_rules;
8pub(crate) mod tags; 9
10mod html;
9#[cfg(test)] 11#[cfg(test)]
10mod tests; 12mod tests;
11 13