| 1629 | } |
| 1630 | |
| 1631 | var import(const context_t &context, const string &dir, const string &name) |
| 1632 | { |
| 1633 | try { |
| 1634 | return make_namespace(context->instance->import(dir, name)); |
| 1635 | } |
| 1636 | catch (...) { |
| 1637 | return null_pointer; |
| 1638 | } |
| 1639 | } |
| 1640 | |
| 1641 | var source_import(const context_t &context, const string &path) |
| 1642 | { |
nothing calls this directly
no test coverage detected