Make LookaheadIterator Sync and Send

This commit is contained in:
Andrew Hlynskyi 2023-08-02 21:37:33 +03:00
parent 7816397026
commit d185f3126f

View file

@ -2646,6 +2646,12 @@ unsafe impl Sync for Language {}
unsafe impl Send for Node<'_> {}
unsafe impl Sync for Node<'_> {}
unsafe impl Send for LookaheadIterator {}
unsafe impl Sync for LookaheadIterator {}
unsafe impl Send for LookaheadNamesIterator<'_> {}
unsafe impl Sync for LookaheadNamesIterator<'_> {}
unsafe impl Send for Parser {}
unsafe impl Sync for Parser {}