Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

errorOffset

Returns an extra offset for column and byte offset of errors that should point after the token in the error message.

Ast.errorOffset
pub fn errorOffset(tree: Ast, parse_error: Error) u32

File

lib/std/zig/Ast.zig:237

Code

pub fn errorOffset(tree: Ast, parse_error: Error) u32 {
    return if (parse_error.token_is_prev) @intCast(tree.tokenSlice(parse_error.token).len) else 0;
}