oxc/crates/oxc_allocator/src/lib.rs
overlookmotel a4247e9353 refactor(allocator): move Box and Vec into separate files (#5034)
Pure refactor. Split `Box` and `Vec` definitions into separate files. Definitions are completely unchanged.
2024-08-21 01:08:08 +00:00

61 lines
995 B
Rust

use std::{
convert::From,
ops::{Deref, DerefMut},
};
pub use bumpalo::collections::String;
use bumpalo::Bump;
mod boxed;
mod clone_in;
mod convert;
mod vec;
pub use boxed::{Address, Box};
pub use clone_in::CloneIn;
pub use convert::{FromIn, IntoIn};
pub use vec::Vec;
#[derive(Default)]
pub struct Allocator {
bump: Bump,
}
impl From<Bump> for Allocator {
fn from(bump: Bump) -> Self {
Self { bump }
}
}
impl Deref for Allocator {
type Target = Bump;
fn deref(&self) -> &Self::Target {
&self.bump
}
}
impl DerefMut for Allocator {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.bump
}
}
#[cfg(test)]
mod test {
use std::ops::Deref;
use bumpalo::Bump;
use crate::Allocator;
#[test]
fn test_api() {
let bump = Bump::new();
let allocator: Allocator = bump.into();
#[allow(clippy::explicit_deref_methods)]
{
_ = allocator.deref();
}
}
}