run method
- @nonVirtual
- @override
- List<
String> filePaths, { - required void print(),
- required void completeTask(),
- required void startTask(),
override
Runs the task with the given file paths.
filePaths
is the list of file paths to process.
print
is a function to print messages.
completeTask
is a function to mark the task as complete.
startTask
is a function to mark the task as started.
Returns a FutureOr
Implementation
@nonVirtual
@override
FutureOr<int> run(
List<String> filePaths, {
required void Function(String?) print,
required void Function(HookTask, int) completeTask,
required void Function(HookTask) startTask,
}) async {
for (final task in subTasks(filePaths)) {
startTask(task);
final result = await task.run(
filePaths,
print: print,
completeTask: completeTask,
startTask: startTask,
);
completeTask(task, result);
if (result != 0) return result;
}
completeTask(this, 0);
return 0;
}