astgen.h (220B) - Raw
1 // astgen.h — AST to ZIR conversion, ported from lib/std/zig/AstGen.zig. 2 #ifndef _ZIG0_ASTGEN_H__ 3 #define _ZIG0_ASTGEN_H__ 4 5 #include "ast.h" 6 #include "zir.h" 7 8 // Convert AST to ZIR. 9 Zir astGen(const Ast* ast); 10 11 #endif