This commit is contained in:
Aaron Smith 2023-09-05 18:15:18 +01:00
parent 0e439f084f
commit fe3af737be
11 changed files with 249 additions and 79 deletions

24
src/root.luau Normal file
View file

@ -0,0 +1,24 @@
if not game then script = require "test/relative-string" end
local flags = require(script.Parent.flags)
local throw = require(script.Parent.throw)
local graph = require(script.Parent.graph)
local create = graph.create
local create_and_open_scope = graph.create_and_open_scope
local close_scope = graph.close_scope
local get_scope = graph.get_scope
local add_cleanup = graph.add_cleanup
local function root<T>(fn: () -> T): T
local node = create(nil) -- todo: lifetime with return vaue from fn
create_and_open_scope(node)
local v = fn()
close_scope()
return v
end
return root