Function errorOffset [src]

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

Prototype

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

Parameters

tree: Astparse_error: Error

Source

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