1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Re-add alternative : operator for pairs

This commit is contained in:
Étienne Fildadut 2022-09-16 14:19:48 +09:00
parent 4284b06f10
commit ef5e1a577f
7 changed files with 36 additions and 22 deletions

View file

@ -64,6 +64,15 @@ lua_functions = {
}
end
},
["_:_(a, b)"] = {
mode = "raw",
value = function(a, b)
return {
type = "pair",
value = { a, b }
}
end
},
-- annotate
["_::_(a, b)"] = {
mode = "raw",