This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// 语义检查
#pragma once
#include <memory>
namespace ast {
struct CompUnit;
}
// 返回经过检查的 AST(当前直接返回原 AST)。
std::shared_ptr<ast::CompUnit> RunSema(std::shared_ptr<ast::CompUnit> ast);