(parent, name, mode, rdev)
| 4110 | return ret; |
| 4111 | }; |
| 4112 | var FSNode = function (parent, name, mode, rdev) { |
| 4113 | if (!parent) { |
| 4114 | parent = this; |
| 4115 | } |
| 4116 | this.parent = parent; |
| 4117 | this.mount = parent.mount; |
| 4118 | this.mounted = null; |
| 4119 | this.id = FS.nextInode++; |
| 4120 | this.name = name; |
| 4121 | this.mode = mode; |
| 4122 | this.node_ops = {}; |
| 4123 | this.stream_ops = {}; |
| 4124 | this.rdev = rdev; |
| 4125 | }; |
| 4126 | var readMode = 292 | 73; |
| 4127 | var writeMode = 146; |
| 4128 | Object.defineProperties(FSNode.prototype, { |
nothing calls this directly
no outgoing calls
no test coverage detected