| 39 | struct variable |
| 40 | { |
| 41 | inline variable(const variable &v) |
| 42 | : var_module(v.var_module), var_symbol(object_copy(v.var_symbol)) {} |
| 43 | inline variable(struct module_t *m, const char *v) |
| 44 | : var_module(m), var_symbol(object_new(v)) {} |
| 45 | inline variable(const char *m, const char *v) |
no test coverage detected