Files
zig/stage0/astgen.h
2026-02-13 23:32:08 +02:00

12 lines
220 B
C

// astgen.h — AST to ZIR conversion, ported from lib/std/zig/AstGen.zig.
#ifndef _ZIG0_ASTGEN_H__
#define _ZIG0_ASTGEN_H__
#include "ast.h"
#include "zir.h"
// Convert AST to ZIR.
Zir astGen(const Ast* ast);
#endif