| 1124 | } |
| 1125 | |
| 1126 | bool DFHack::Lua::AssignDFObject(color_ostream &out, lua_State *state, |
| 1127 | const type_identity *type, void *target, int val_index, |
| 1128 | bool exact_type, bool perr) |
| 1129 | { |
| 1130 | return doAssignDFObject(&out, state, type, target, val_index, exact_type, perr, false); |
| 1131 | } |
| 1132 | |
| 1133 | void DFHack::Lua::CheckDFAssign(lua_State *state, const type_identity *type, |
| 1134 | void *target, int val_index, bool exact_type) |
nothing calls this directly
no test coverage detected