2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-21 04:53:24 +00:00

fix: add flush as sink method and fix arg amount for read

This commit is contained in:
sammyette 2023-02-19 13:27:48 -04:00
parent 54f89db578
commit 9e45929da7
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -27,7 +27,8 @@ func setupSinkType(rtm *rt.Runtime) {
sinkMethods := rt.NewTable()
sinkFuncs := map[string]util.LuaExport{
"read": {luaSinkRead, 0, false},
"flush": {luaSinkFlush, 1, false},
"read": {luaSinkRead, 1, false},
"write": {luaSinkWrite, 2, false},
"writeln": {luaSinkWriteln, 2, false},
}