| 1396 | } |
| 1397 | |
| 1398 | WasiExpect<__wasi_filetype_t> INode::filetype() const noexcept { |
| 1399 | if (!Stat) { |
| 1400 | EXPECTED_TRY(updateStat()); |
| 1401 | } |
| 1402 | return unsafeFiletype(); |
| 1403 | } |
| 1404 | |
| 1405 | bool INode::isDirectory() const noexcept { |
| 1406 | if (!Stat) { |
nothing calls this directly
no test coverage detected