feat(frontend): 命令行添加IR和AST选择输出

This commit is contained in:
jing
2026-02-28 23:40:05 +08:00
parent d08b23276a
commit 66659524c8
7 changed files with 75 additions and 16 deletions

View File

@@ -6,6 +6,8 @@
struct CLIOptions {
std::string input;
std::string ast_dot_output;
bool emit_ast = true;
bool emit_ir = true;
bool show_help = false;
};