Function renderToArrayList [src]

Prototype

pub fn renderToArrayList(tree: Ast, buffer: *std.ArrayList(u8), fixups: Fixups) RenderError!void

Parameters

tree: Astbuffer: *std.ArrayList(u8)fixups: Fixups

Possible Errors

OutOfMemory

Ran out of memory allocating call stack frames to complete rendering, or ran out of memory allocating space in the output buffer.

Source

pub fn renderToArrayList(tree: Ast, buffer: *std.ArrayList(u8), fixups: Fixups) RenderError!void { return @import("./render.zig").renderTree(buffer, tree, fixups); }