Don't parse intra doc links as syntax trees

This commit is contained in:
Lukas Wirth 2024-01-26 19:45:46 +01:00
parent 5a343415e8
commit 6cf7b5f8d7
8 changed files with 33 additions and 55 deletions

View file

@ -2,7 +2,6 @@
use std::fmt::{self, Write};
use salsa::InternId;
use stdx::assert_eq_size;
mod map;
@ -36,7 +35,6 @@ pub const FIXUP_ERASED_FILE_AST_ID_MARKER: ErasedFileAstId =
la_arena::Idx::from_raw(la_arena::RawIdx::from_u32(!0 - 1));
pub type Span = SpanData<SyntaxContextId>;
assert_eq_size!(Span, 20);
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
pub struct SpanData<Ctx> {