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.
// AST -> IR(平台无关、LLVM 风格):
// - 将带语义信息的 AST 翻译为 src/ir/* 中的 IR 结构
// - 负责控制流结构化翻译(基本块、分支、循环)
// - 生成函数与全局对象,翻译表达式求值与调用等