DoxigAlpha

make

Function parameters

Parameters

#
step:*Step
options:Step.MakeOptions

Functions in this namespace

Functions

#

= .fail

Values

#
base_id
= .fail

Source

Implementation

#
fn make(step: *Step, options: Step.MakeOptions) !void {
    _ = options; // No progress to report.

    const fail: *Fail = @fieldParentPtr("step", step);

    try step.result_error_msgs.append(step.owner.allocator, fail.error_msg);

    return error.MakeFailed;
}