doc(allocator): Mention oxc_allocator

This commit is contained in:
강동윤 (Donny) 2024-07-10 20:27:34 +09:00
parent 6b8ee2b51d
commit be99ce0a57

View File

@ -1,3 +1,7 @@
//! Allocator for swc.
//!
//! API designed after [`oxc_allocator`](https://github.com/oxc-project/oxc/tree/725571aad193ec6ba779c820baeb4a7774533ed7/crates/oxc_allocator/src).
use std::ops::{Deref, DerefMut};
use bumpalo::Bump;