51a939ac45
- 去除了不再使用的结构,并更新了编译器以处理新的闭包语义。 - 改进了 Compiler,使其能够生成带有源位置跟踪的指令。 - 在 FunctionObject 和 VM 中引入了作用域变量管理,以支持动态闭包。 - 实现了使用标记-扫描(Mark-And-Sweep) (Tri-Color tracing) 算法的垃圾回收机制,包括对作用域变量的处理。 - 在 VM 中增加了函数加载和作用域变量检索的支持。 - 更新了对象模型,包括引入 InstanceObject 并改进内存管理。 - 添加了用于调试的全局变量打印功能。
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/*!
|
|
@file src/Ast/Stmt/FnDefStmt.hpp
|
|
@brief 函数定义 AST 节点
|
|
*/
|
|
|
|
#pragma once
|
|
#include <Ast/Base.hpp>
|
|
#include <Sema/Environment.hpp>
|
|
#include <Bytecode/Bytecode.hpp>
|
|
|
|
namespace Fig
|
|
{
|
|
struct Param : public AstNode {
|
|
String name;
|
|
TypeExpr *typeSpecifier;
|
|
Expr *defaultValue;
|
|
Type resolvedType;
|
|
Param() { type = AstType::AstNode; }
|
|
virtual ~Param() = default;
|
|
};
|
|
|
|
struct PosParam final : public Param {
|
|
PosParam(String _n, TypeExpr *_ts, Expr *_dv, SourceLocation _loc) {
|
|
name = std::move(_n); typeSpecifier = _ts; defaultValue = _dv; location = std::move(_loc);
|
|
}
|
|
virtual String toString() const override { return name; }
|
|
};
|
|
|
|
struct FnDefStmt final : public Stmt {
|
|
String name;
|
|
DynArray<Param *> params;
|
|
TypeExpr *returnTypeSpecifier;
|
|
BlockStmt *body;
|
|
Type resolvedReturnType;
|
|
Symbol *resolvedSymbol = nullptr; // 连接物理符号
|
|
|
|
int protoIndex = -1; // 在CompiledModule扁平化protos的下标
|
|
DynArray<UpvalueInfo> upvalues;
|
|
|
|
FnDefStmt() { type = AstType::FnDefStmt; }
|
|
FnDefStmt(bool _p, String _n, DynArray<Param *> _pa, TypeExpr *_rt, BlockStmt *_b, SourceLocation _loc)
|
|
: name(std::move(_n)), params(std::move(_pa)), returnTypeSpecifier(_rt), body(_b)
|
|
{
|
|
type = AstType::FnDefStmt; isPublic = _p; location = std::move(_loc);
|
|
}
|
|
|
|
virtual String toString() const override {
|
|
return std::format("<FnDefStmt '{}'>", name);
|
|
}
|
|
};
|
|
}
|