mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 20:42:04 +00:00
Remove more unreachable pubs
This commit is contained in:
parent
731b38fa3c
commit
ba8d6d1e4e
39 changed files with 114 additions and 121 deletions
|
@ -2,7 +2,7 @@ mod format;
|
|||
mod html;
|
||||
mod injection;
|
||||
mod macro_rules;
|
||||
mod tags;
|
||||
pub(crate) mod tags;
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
||||
|
@ -20,12 +20,13 @@ use syntax::{
|
|||
};
|
||||
|
||||
use crate::{
|
||||
syntax_highlighting::{format::FormatStringHighlighter, macro_rules::MacroRulesHighlighter},
|
||||
FileId,
|
||||
syntax_highlighting::{
|
||||
format::FormatStringHighlighter, macro_rules::MacroRulesHighlighter, tags::Highlight,
|
||||
},
|
||||
FileId, HighlightModifier, HighlightTag,
|
||||
};
|
||||
|
||||
pub(crate) use html::highlight_as_html;
|
||||
pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct HighlightedRange {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue