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
//! `LuaStatus` — return codes matching C-Lua's LUA_OK / LUA_ERR* constants.
// ──────────────────────────────────────────────────────────────────────────────
// PORT STATUS
// source: src/lua.h (LUA_OK / LUA_YIELD / LUA_ERR*)
// target_crate: lua-types
// confidence: high
// todos: 0
// port_notes: 0
// unsafe_blocks: 0
// notes: LuaStatus enum. Mirrors C's status constants used as return codes from
// lua_pcall / lua_resume / lua_load.
// ──────────────────────────────────────────────────────────────────────────────