// 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