( &mut self, span: Span, kind: SemanticKind, modifier: SemanticModifier, decoration: SemanticDecoration, )
| 162 | } |
| 163 | |
| 164 | fn insert_with_decoration( |
| 165 | &mut self, |
| 166 | span: Span, |
| 167 | kind: SemanticKind, |
| 168 | modifier: SemanticModifier, |
| 169 | decoration: SemanticDecoration, |
| 170 | ) { |
| 171 | self.highlights.insert(span, Highlight { span, kind, modifier, decoration }); |
| 172 | } |
| 173 | } |
no test coverage detected