| 1216 | } |
| 1217 | |
| 1218 | WasiExpect<uint64_t> INode::getNativeHandler() const noexcept { |
| 1219 | return reinterpret_cast<uint64_t>(Handle); |
| 1220 | } |
| 1221 | |
| 1222 | WasiExpect<void> INode::pathCreateDirectory(std::string Path) const noexcept { |
| 1223 | EXPECTED_TRY(auto FullPath, getRelativePath(Handle, Path)); |
no outgoing calls
no test coverage detected