13 lines
302 B
Lua
13 lines
302 B
Lua
local M = {}
|
|
|
|
---Store entries as a list-like table for maximum space efficiency and retrieval speed.
|
|
---We use the constants below to index into the table.
|
|
---@alias oil.InternalEntry any[]
|
|
|
|
-- Indexes into oil.InternalEntry
|
|
M.FIELD_ID = 1
|
|
M.FIELD_NAME = 2
|
|
M.FIELD_TYPE = 3
|
|
M.FIELD_META = 4
|
|
|
|
return M
|