()
| 186 | } |
| 187 | |
| 188 | _readSourceCode(): string { |
| 189 | if (this._sourceCode == null) { |
| 190 | this._sourceCode = fs.readFileSync(this.path, 'utf8'); |
| 191 | } |
| 192 | return this._sourceCode; |
| 193 | } |
| 194 | |
| 195 | _readDocBlock(): DocBlock { |
| 196 | if (this._docBlock == null) { |
no outgoing calls
no test coverage detected