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.

expectSemicolon

Parse.expectSemicolon
fn expectSemicolon(p: *Parse, error_tag: AstError.Tag, recoverable: bool) Error!void

File

lib/std/zig/Parse.zig:3390

Code

fn expectSemicolon(p: *Parse, error_tag: AstError.Tag, recoverable: bool) Error!void {
    if (p.tokenTag(p.tok_i) == .semicolon) {
        _ = p.nextToken();
        return;
    }
    try p.warn(error_tag);
    if (!recoverable or !p.recover) return error.ParseError;
}