mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
Fix heap snapshots memory usage stats. Introduce estimateDirectMemoryUsageOf function in "bun:jsc" (#15790)
This commit is contained in:
@@ -47,6 +47,10 @@ pub const WTFStringImplStruct = extern struct {
|
||||
return this.m_refCount / s_refCountIncrement;
|
||||
}
|
||||
|
||||
pub fn memoryCost(this: WTFStringImpl) usize {
|
||||
return this.byteLength();
|
||||
}
|
||||
|
||||
pub fn isStatic(this: WTFStringImpl) bool {
|
||||
return this.m_refCount & s_refCountIncrement != 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user