(node)
| 151 | } |
| 152 | }, |
| 153 | readlink(node) { |
| 154 | var path = PROXYFS.realPath(node); |
| 155 | try { |
| 156 | return node.mount.opts.fs.readlink(path); |
| 157 | } catch(e) { |
| 158 | if (!e.code) throw e; |
| 159 | throw new FS.ErrnoError(ERRNO_CODES[e.code]); |
| 160 | } |
| 161 | }, |
| 162 | }, |
| 163 | stream_ops: { |
| 164 | open(stream) { |
no outgoing calls
no test coverage detected