(name, content)
| 30 | }; |
| 31 | |
| 32 | var File = function(name, content) { |
| 33 | this.type = 'file'; |
| 34 | this.name = name; |
| 35 | this.content = content !== undefined ? content : null; |
| 36 | }; |
| 37 | |
| 38 | var FileSystem = function(name) { |
| 39 | this.folder = new Folder(name); |
nothing calls this directly
no outgoing calls
no test coverage detected