(defaultPath, specified)
| 207 | */ |
| 208 | _initOptions(options) { |
| 209 | let resolvePathFor = (defaultPath, specified) => { |
| 210 | let path = defaultPath; |
| 211 | if (specified && typeof specified === 'string') { |
| 212 | path = specified; |
| 213 | } |
| 214 | let resolvedPath = this._resolveLocal(path); |
| 215 | |
| 216 | return resolvedPath; |
| 217 | }; |
| 218 | |
| 219 | let buildTreeFor = (defaultPath, specified, shouldWatch) => { |
| 220 | if (specified !== null && specified !== undefined && typeof specified !== 'string') { |
nothing calls this directly
no test coverage detected