(theFileEntry, isWritable)
| 39 | } |
| 40 | |
| 41 | function setFile(theFileEntry, isWritable) { |
| 42 | fileEntry = theFileEntry; |
| 43 | hasWriteAccess = isWritable; |
| 44 | } |
| 45 | |
| 46 | function readFileIntoEditor(theFileEntry) { |
| 47 | fs.readFile(theFileEntry.toString(), function (err, data) { |
no outgoing calls
no test coverage detected