()
| 15 | |
| 16 | let taskHelperCode: string |
| 17 | export function getDefaultTaskHelperCode() { |
| 18 | if (taskHelperCode == null) { |
| 19 | taskHelperCode = fs.readFileSync(findAncestorPath('./scripts/taskhelper.py'), 'utf8') |
| 20 | } |
| 21 | return taskHelperCode |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Abstract base class for wrappers around the task standard DriverImpls (though the DriverImpls |
no test coverage detected