()
| 193 | } |
| 194 | |
| 195 | _readDocBlock(): DocBlock { |
| 196 | if (this._docBlock == null) { |
| 197 | this._docBlock = docblock.parseAsObject(this._readSourceCode()); |
| 198 | } |
| 199 | return this._docBlock; |
| 200 | } |
| 201 | |
| 202 | _getHasteName(): ?string { |
| 203 | if (this._hasteNameCache == null) { |
no test coverage detected