(fileToParse: SourceFileInfo, options: ConfigOptions)
| 217 | } |
| 218 | |
| 219 | private _parseFile(fileToParse: SourceFileInfo, options: ConfigOptions) { |
| 220 | if (!this._isFileNeeded(fileToParse) || !fileToParse.sourceFile.isParseRequired()) { |
| 221 | return; |
| 222 | } |
| 223 | |
| 224 | if (fileToParse.sourceFile.parse(options)) { |
| 225 | this._updateSourceFileImports(fileToParse); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | private _doSemanticAnalysis(fileToAnalyze: SourceFileInfo, options: ConfigOptions) { |
| 230 | if (!this._isFileNeeded(fileToAnalyze) || !fileToAnalyze.sourceFile.isSemanticAnalysisRequired()) { |
no test coverage detected