15 lines
269 B
C++
15 lines
269 B
C++
/*!
|
|
@file src/Ast/Ast.hpp
|
|
@brief Ast总链接
|
|
@author PuqiAR (im@puqiar.top)
|
|
@date 2026-02-14
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Ast/Expr/IdentiExpr.hpp>
|
|
#include <Ast/Expr/InfixExpr.hpp>
|
|
#include <Ast/Expr/LiteralExpr.hpp>
|
|
#include <Ast/Expr/PrefixExpr.hpp>
|
|
|