Skip to content

Commit 3dfec8d

Browse files
committed
refactor
1 parent dc9bdf2 commit 3dfec8d

File tree

17 files changed

+810
-1912
lines changed

17 files changed

+810
-1912
lines changed

crates/luars/src/gc/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
// Young generation: frequently collected, most objects die young
44
// Old generation: rarely collected, long-lived objects
55
mod object_pool;
6-
mod object_pool_v2;
76

87
// Use ObjectPoolV2 as the main ObjectPool
9-
pub use object_pool_v2::{
8+
pub use object_pool::{
109
ObjectPoolV2 as ObjectPool,
1110
StringId, TableId, FunctionId, UpvalueId, UserdataId, ThreadId,
1211
Arena, GcHeader, GcTable, GcFunction, GcUpvalue, GcString, GcThread, UpvalueState,

0 commit comments

Comments
 (0)