2024-02-27 08:45:58 +01:00

22 lines
397 B
C

#pragma once
#include "Base.h"
#include "Expr/BinExpr.h"
#include "Expr/Block.h"
#include "Expr/Call.h"
#include "Expr/Identifier.h"
#include "Expr/UnaryExpr.h"
#include "Expr/Value.h"
#include "Stmt/ExprStmt.h"
#include "Stmt/FnDecl.h"
#include "Stmt/ValDecl.h"
#include "Type/Function.h"
#include "Type/Named.h"
#include "Type/Tuple.h"
#include "Module/Import.h"
#include "Module/Module.h"