2024-03-01 07:06:51 +01:00

30 lines
608 B
C

#pragma once
#include "Base.h"
#include "Expr/BinExpr.h"
#include "Expr/Block.h"
#include "Expr/Call.h"
#include "Expr/Closure.h"
#include "Expr/Identifier.h"
#include "Expr/PropExpr.h"
#include "Expr/Tuple.h"
#include "Expr/UnaryExpr.h"
#include "Expr/Value.h"
#include "Stmt/ExprStmt.h"
#include "Stmt/FnDef.h"
#include "Stmt/TraitAlias.h"
#include "Stmt/TraitDef.h"
#include "Stmt/TypeAlias.h"
#include "Stmt/TypeDef.h"
#include "Stmt/ValDecl.h"
#include "Type/Closure.h"
#include "Type/Generic.h"
#include "Type/Named.h"
#include "Type/Tuple.h"
#include "Module/Import.h"
#include "Module/Module.h"