1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! Lua 5.4 virtual machine — runtime crate.
//!
//! Modules map to the canonical C source files per `ANALYSES/file_deps.txt`.
//! Phase A populated each module with a faithful transliteration; Phase B is
//! reconciling cross-module references against the `lua-types` foundation.
/// Glob-imported by every module so the Phase-B extension traits resolve
/// without each module having to list them individually.
///
/// TODO(phase-b): once the canonical types in `lua-types` grow these methods
/// natively, this prelude can shrink to just the LuaState helpers.
// ──────────────────────────────────────────────────────────────────────────
// PORT STATUS
// source: (module aggregator; see individual files for C sources)
// target_crate: lua-vm
// confidence: high
// todos: 0
// port_notes: 0
// unsafe_blocks: 0
// notes: Each pub mod corresponds to one C source under
// `reference/lua-5.4.7/src/`. See `ANALYSES/file_deps.txt`.
// ──────────────────────────────────────────────────────────────────────────