Remove obsolete Send/Sync impls for ParsedSource

This commit is contained in:
Johannes Altmanninger
2026-05-01 21:12:32 +08:00
parent 5b1e163f22
commit 5998421410

View File

@@ -104,10 +104,6 @@ pub struct ParsedSource {
pub ast: Ast,
}
// Safety: this can be derived once the src_ffi field is removed.
unsafe impl Send for ParsedSource {}
unsafe impl Sync for ParsedSource {}
const _: () = assert_send::<ParsedSource>();
const _: () = assert_sync::<ParsedSource>();