chore: group Sync, Send impls by type

This commit is contained in:
Andrew Hlynskyi 2023-07-22 17:38:42 +03:00
parent 4f28ce4e3b
commit 0f533b909d

View file

@ -2642,12 +2642,16 @@ impl error::Error for LanguageError {}
impl error::Error for QueryError {}
unsafe impl Send for Language {}
unsafe impl Send for Parser {}
unsafe impl Send for Query {}
unsafe impl Send for QueryCursor {}
unsafe impl Send for Tree {}
unsafe impl Sync for Language {}
unsafe impl Send for Parser {}
unsafe impl Sync for Parser {}
unsafe impl Send for Query {}
unsafe impl Sync for Query {}
unsafe impl Send for QueryCursor {}
unsafe impl Sync for QueryCursor {}
unsafe impl Send for Tree {}
unsafe impl Sync for Tree {}