Available on crate feature
luau only.Expand description
Luau-specific extensions and types.
This module provides Luau-specific functionality including custom require implementations,
heap memory analysis, and Luau VM integration utilities.
§Overview
Require— trait for implementing custom module loaders used withLua::create_require_functionFsRequirer— default filesystem-basedRequireimplementationNavigateError— error type returned when navigating the module pathHeapDump— snapshot of Luau heap memory usage, obtained viaLua::heap_dump
Structs§
- FsRequirer
- The standard implementation of Luau
require-by-stringnavigation. - Heap
Dump - Represents a heap dump of a Luau memory state.
Enums§
- Navigate
Error - An error that can occur during navigation in the Luau
require-by-stringsystem.
Traits§
- Require
- A trait for handling modules loading and navigation in the Luau
require-by-stringsystem.