2024-02-27 21:06:50 +01:00

25 lines
478 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/TraitDecl.h"
#include "Stmt/TypeDecl.h"
#include "Stmt/ValDecl.h"
#include "Type/Function.h"
#include "Type/Generic.h"
#include "Type/Named.h"
#include "Type/Tuple.h"
#include "Module/Import.h"
#include "Module/Module.h"