zig0

my attempts at zig bootstrapping in C
Log | Files | Refs | README | LICENSE

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