(ts, name, c)
| 145 | var bigDoc = 250; |
| 146 | |
| 147 | function getFile(ts, name, c) { |
| 148 | var buf = ts.docs[name]; |
| 149 | if (buf) |
| 150 | c(docValue(ts, buf)); |
| 151 | else if (ts.options.getFile) |
| 152 | ts.options.getFile(name, c); |
| 153 | else |
| 154 | c(null); |
| 155 | } |
| 156 | |
| 157 | function findDoc(ts, doc, name) { |
| 158 | for (var n in ts.docs) { |
no test coverage detected