This commit is contained in:
Aaron Smith 2023-08-02 16:16:37 +01:00
parent 7cdcebf03c
commit fab66a9d6b
16 changed files with 1 additions and 61 deletions

View file

@ -1,7 +1,3 @@
------------------------------------------------------------------------------------------
-- vide/Change.lua
------------------------------------------------------------------------------------------
if not game then script = (require :: any) "test/wrap-require" end
local memoize = require(script.Parent.memoize)

View file

@ -1,7 +1,3 @@
------------------------------------------------------------------------------------------
-- vide/apply.lua
------------------------------------------------------------------------------------------
if not game then
script = (require :: any) "test/wrap-require"
typeof = require "test/mock".typeof

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/bind.lua
--------------------------------------------------------------------------------------------------------------
local warn = warn -- todo
if not game then
@ -9,7 +5,6 @@ if not game then
warn = print
end
local graph = require(script.Parent.graph)
type Node<T> = graph.Node<T>
local get = graph.get

View file

@ -1,7 +1,3 @@
------------------------------------------------------------------------------------------
-- vide/cleanup.lua
------------------------------------------------------------------------------------------
if not game then script = require "test/wrap-require" end
-- todo: verify correct behavior in non-standard usage

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/create.lua
--------------------------------------------------------------------------------------------------------------
if not game then
script = (require :: any) "test/wrap-require"
Instance = require("test/mock").Instance

View file

@ -1,6 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/defaults.lua
--------------------------------------------------------------------------------------------------------------
-- todo
local Enum = Enum

View file

@ -1,7 +1,3 @@
------------------------------------------------------------------------------------------
-- vide/derive.lua
------------------------------------------------------------------------------------------
if not game then script = (require :: any) "test/wrap-require" end
local graph = require(script.Parent.graph)

View file

@ -1,5 +1 @@
--------------------------------------------------------------------------------------------------------------------------------
-- vide/flags.lua
--------------------------------------------------------------------------------------------------------------------------------
return { strict = false }

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/graph.lua
--------------------------------------------------------------------------------------------------------------
if not game then script = (require :: any) "test/wrap-require" end
local flags = require(script.Parent.flags)

View file

@ -1,5 +1,5 @@
--------------------------------------------------------------------------------------------------------------
-- vide.lua
-- vide.luau
-- v0.1.0
--------------------------------------------------------------------------------------------------------------

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/map.lua
--------------------------------------------------------------------------------------------------------------
if not game then script = (require :: any) "test/wrap-require" end
local graph = require(script.Parent.graph)

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/memoize.lua
--------------------------------------------------------------------------------------------------------------
local function memoize<X, Y>(f: (X) -> Y): ((X) -> Y, { [X]: Y })
local cache: { [X]: Y } = {}

View file

@ -1,7 +1,3 @@
------------------------------------------------------------------------------------------
-- vide/wrap.lua
------------------------------------------------------------------------------------------
if not game then script = require "test/wrap-require" end
local graph = require(script.Parent.graph)

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/spring.lua
--------------------------------------------------------------------------------------------------------------
if not game then script = (require :: any) "test/wrap-require" end
--[[

View file

@ -1,7 +1,3 @@
------------------------------------------------------------------------------------------
-- vide/throw.lua
------------------------------------------------------------------------------------------
local function throw(msg: string)
local stack = 1

View file

@ -1,7 +1,3 @@
--------------------------------------------------------------------------------------------------------------
-- vide/watch.lua
--------------------------------------------------------------------------------------------------------------
if not game then script = (require :: any) "test/wrap-require" end
local graph = require(script.Parent.graph)