| 1421 | } |
| 1422 | |
| 1423 | WasiExpect<__wasi_filesize_t> INode::filesize() const noexcept { |
| 1424 | if (!Stat) { |
| 1425 | EXPECTED_TRY(updateStat()); |
| 1426 | } |
| 1427 | return Stat->st_size; |
| 1428 | } |
| 1429 | |
| 1430 | bool INode::canBrowse() const noexcept { |
| 1431 | return ::faccessat(Fd, ".", X_OK, 0) == 0; |
nothing calls this directly
no test coverage detected