(theFileEntry, isWritable)
| 46 | } |
| 47 | |
| 48 | function setFile(theFileEntry, isWritable) { |
| 49 | fileEntry = theFileEntry; |
| 50 | hasWriteAccess = isWritable; |
| 51 | } |
| 52 | |
| 53 | function readFileIntoEditor(theFileEntry) { |
| 54 | fs.readFile(theFileEntry, function (err, data) { |
no outgoing calls
no test coverage detected