change parameter::name to std::string

This commit is contained in:
ValKmjolnir
2023-06-26 19:35:21 +08:00
parent fb3d9ed2f3
commit 8a10f07ce7
6 changed files with 22 additions and 38 deletions
-1
View File
@@ -66,7 +66,6 @@ bool ast_visitor::visit_code_block(code_block* node) {
}
bool ast_visitor::visit_parameter(parameter* node) {
node->get_parameter_name()->accept(this);
if (node->get_default_value()) {
node->get_default_value()->accept(this);
}