| 49 | inline explicit variable(const char *v) : variable(root_module(), v) {} |
| 50 | inline explicit variable(const std::string &v) : variable(v.c_str()) {} |
| 51 | inline ~variable() |
| 52 | { |
| 53 | if (var_symbol) object_free(var_symbol); |
| 54 | } |
| 55 | |
| 56 | inline operator list() const { return list{var_get(var_module, var_symbol)}; } |
| 57 |
nothing calls this directly
no test coverage detected