diff options
| author | Li Jin <dragon-fly@qq.com> | 2026-01-19 18:14:44 +0800 |
|---|---|---|
| committer | Li Jin <dragon-fly@qq.com> | 2026-01-19 18:14:44 +0800 |
| commit | c2235b5c8fe7c84eeef5828b8bbfe9ad7aa1ecb3 (patch) | |
| tree | d0d901ce046e2e7c0f0bffe29e1e86b997d0e4ad | |
| parent | ccfe66f87663e10603e453f02894bb82dd23c93b (diff) | |
| download | yuescript-c2235b5c8fe7c84eeef5828b8bbfe9ad7aa1ecb3.tar.gz yuescript-c2235b5c8fe7c84eeef5828b8bbfe9ad7aa1ecb3.tar.bz2 yuescript-c2235b5c8fe7c84eeef5828b8bbfe9ad7aa1ecb3.zip | |
Fix.
| -rw-r--r-- | src/yuescript/yue_ast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
| 883 | for (auto value : values.objects()) { | 883 | for (auto value : values.objects()) { |
| 884 | temp.emplace_back(value->to_string(ud)); | 884 | temp.emplace_back(value->to_string(ud)); |
| 885 | } | 885 | } |
| 886 | return "= "s + join(temp, "; "sv); | 886 | return "= "s + join(temp, ", "sv); |
| 887 | } | 887 | } |
| 888 | std::string Update_t::to_string(void* ud) const { | 888 | std::string Update_t::to_string(void* ud) const { |
| 889 | return op->to_string(ud) + "= "s + value->to_string(ud); | 889 | return op->to_string(ud) + "= "s + value->to_string(ud); |
