LuaFieldsMap typedef

LuaFieldsMap = Map<Object, LuaObject?>

Shorthand notation for a Map of Object -> LuaObject key-pairs. Note that the LuaObject can be null as lua represents these as LuaType.nil.

Implementation

typedef LuaFieldsMap = Map<Object, LuaObject?>;