()
| 1106 | } |
| 1107 | |
| 1108 | private async _shouldUseWatchman(): Promise<boolean> { |
| 1109 | if (!this._options.useWatchman) { |
| 1110 | return false; |
| 1111 | } |
| 1112 | if (!isWatchmanInstalledPromise) { |
| 1113 | isWatchmanInstalledPromise = isWatchmanInstalled(); |
| 1114 | } |
| 1115 | return isWatchmanInstalledPromise; |
| 1116 | } |
| 1117 | |
| 1118 | private _createEmptyMap(): InternalHasteMap { |
| 1119 | return { |
no test coverage detected