This commit is contained in:
aaron 2023-09-06 23:01:53 +01:00
parent fe3af737be
commit dafdc0739b
10 changed files with 249 additions and 550 deletions

View file

@ -2,22 +2,35 @@ if not game then script = require "test/relative-string" end
local flags = require(script.Parent.flags)
local throw = require(script.Parent.throw)
local on_gc = require(script.Parent.on_gc)()
local graph = require(script.Parent.graph)
type Node<T> = graph.Node<T>
local create = graph.create
local create_and_open_scope = graph.create_and_open_scope
local init_scope = graph.init_scope
local close_scope = graph.close_scope
local get_scope = graph.get_scope
local add_cleanup = graph.add_cleanup
local destroy = graph.destroy
local refs = {} :: { [Node<unknown>]: unknown }
setmetatable(refs :: any, { __mode = "v" })
local function root<T>(fn: () -> T): T
assert(not get_scope())
local node = create(nil) -- todo: lifetime with return vaue from fn
create_and_open_scope(node)
init_scope(node)
local v = fn()
close_scope()
refs[node] = v
on_gc(v, function()
destroy(node)
end)
return v
end