aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/syntax_highlighting/html.rs
diff options
context:
space:
mode:
authorIgor Aleksanov <[email protected]>2020-10-24 09:39:57 +0100
committerIgor Aleksanov <[email protected]>2020-10-24 09:39:57 +0100
commit19cce08662222f012a0f50ff73afd4fdd34ca683 (patch)
tree6561f9a2802caff7b5fe56eeaa0c751bc5015a91 /crates/ide/src/syntax_highlighting/html.rs
parent2c787676c92c81a0c9efeb3e72a91c5132c8106a (diff)
Re-export base_db from ide_db
Diffstat (limited to 'crates/ide/src/syntax_highlighting/html.rs')
-rw-r--r--crates/ide/src/syntax_highlighting/html.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting/html.rs b/crates/ide/src/syntax_highlighting/html.rs
index 57e2d2923..abcc5cccc 100644
--- a/crates/ide/src/syntax_highlighting/html.rs
+++ b/crates/ide/src/syntax_highlighting/html.rs
@@ -1,6 +1,6 @@
1//! Renders a bit of code as HTML. 1//! Renders a bit of code as HTML.
2 2
3use base_db::SourceDatabase; 3use ide_db::base_db::SourceDatabase;
4use oorandom::Rand32; 4use oorandom::Rand32;
5use stdx::format_to; 5use stdx::format_to;
6use syntax::{AstNode, TextRange, TextSize}; 6use syntax::{AstNode, TextRange, TextSize};