* * On Windows, users will have a much better experience if symlinks are enabled * and usable. When queried, this object informs Windows users regarding * improving their build performance, and how. * * > Windows Vista: nothing we can really do, so we fall back to junctions for folde
(ui, isWindows, canSymlink, exec)
| 29 | * @class WindowsSymlinkChecker |
| 30 | */ |
| 31 | constructor(ui, isWindows, canSymlink, exec) { |
| 32 | this.ui = ui; |
| 33 | this.isWindows = isWindows; |
| 34 | this.canSymlink = canSymlink; |
| 35 | this.exec = exec; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * |
nothing calls this directly
no outgoing calls
no test coverage detected