| 667 | } |
| 668 | |
| 669 | ModuleInstance* SLgetInstanceChildren(ModuleInstance* instance, uint32_t i) { |
| 670 | if (!instance) return nullptr; |
| 671 | return instance->getChildren(i); |
| 672 | } |
| 673 | |
| 674 | ModuleInstance* SLgetInstanceParent(ModuleInstance* instance) { |
| 675 | if (!instance) return nullptr; |
no test coverage detected