mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-27 16:49:31 +00:00
Persist LuaFunctions & add tests
This commit is contained in:
parent
a46ac380e8
commit
9a38dfa34f
11 changed files with 108 additions and 19 deletions
10
test/tests/serialize function.ans
Normal file
10
test/tests/serialize function.ans
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
:f = ()
|
||||
_
|
||||
:$_+_(a::string, b)
|
||||
"{a}{b}"
|
||||
|
||||
:a=1
|
||||
f = $(x)
|
||||
x+a
|
||||
|
||||
|{(f!serialize!deserialize)("bar")}
|
||||
7
test/tests/serialize lua function.ans
Normal file
7
test/tests/serialize lua function.ans
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
:f = ()
|
||||
_
|
||||
:a=1
|
||||
f = $()
|
||||
1+a
|
||||
|
||||
|{(f!serialize!deserialize)!}
|
||||
13
test/tests/serialize.ans
Normal file
13
test/tests/serialize.ans
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
:x = 43
|
||||
|
||||
|{x!serialize!deserialize}
|
||||
|
||||
:l = [2, "", 5]
|
||||
|
||||
|{l!serialize!deserialize}
|
||||
|
||||
:t = *{2, "", 5}
|
||||
t(3) = "ok"
|
||||
t("f") = "b"
|
||||
|
||||
|{t!serialize!deserialize}
|
||||
Loading…
Add table
Add a link
Reference in a new issue