回档之后的重写。部分问题修复。添加了什么我也忘了

This commit is contained in:
2026-02-01 15:52:28 +08:00
parent 61bffdc743
commit aea716ced2
50 changed files with 3676 additions and 2997 deletions

View File

@@ -1,7 +1,7 @@
#pragma once
#include <Ast/astBase.hpp>
#include <Value/Type.hpp>
#include <Evaluator/Value/Type.hpp>
#include <Core/fig_string.hpp>
#include <format>
@@ -56,7 +56,7 @@ namespace Fig::Ast
{
return FString(variadicPara + u8"...");
}
static const auto posParasToString = [this]() {
const auto posParasToString = [this]() {
FString out;
for (auto &p : posParas)
{
@@ -70,7 +70,7 @@ namespace Fig::Ast
out.pop_back();
return out;
};
static const auto defParasToString = [this]() {
const auto defParasToString = [this]() {
FString out;
for (auto &p : defParas)
{