⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

Module js_gc

Module js_gc 

Source
Expand description

JavaScript Garbage Collector

Conservative mark-sweep GC for the JS object arena. Uses tri-color marking with root scanning from the VM stack, call frames, and globals.

Structs§

GcArena
Arena for garbage-collected objects
GcCell
A GC-managed cell wrapping a JsObject
GcHeap
Garbage collector coordinating mark and sweep phases