From c2235b5c8fe7c84eeef5828b8bbfe9ad7aa1ecb3 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Mon, 19 Jan 2026 18:14:44 +0800 Subject: Fix. --- src/yuescript/yue_ast.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/yuescript/yue_ast.cpp b/src/yuescript/yue_ast.cpp index bcea4d5..cfd4cc6 100644 --- a/src/yuescript/yue_ast.cpp +++ b/src/yuescript/yue_ast.cpp @@ -883,7 +883,7 @@ std::string Assign_t::to_string(void* ud) const { for (auto value : values.objects()) { temp.emplace_back(value->to_string(ud)); } - return "= "s + join(temp, "; "sv); + return "= "s + join(temp, ", "sv); } std::string Update_t::to_string(void* ud) const { return op->to_string(ud) + "= "s + value->to_string(ud); -- cgit v1.2.3-55-g6feb