fix(ast): 规范AST输出

This commit is contained in:
jing
2026-02-28 21:03:40 +08:00
parent cd235e60cc
commit d08b23276a
6 changed files with 184 additions and 38 deletions

View File

@@ -1,10 +1,11 @@
// 简易命令行解析:支持输入文件路径
// 简易命令行解析:支持帮助、输入文件和 AST DOT 导出
#pragma once
#include <string>
struct CLIOptions {
std::string input;
std::string ast_dot_output;
bool show_help = false;
};