Skip to content

Commit

Permalink
Add Buffer Library (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nidho authored Mar 28, 2024
1 parent e0d0614 commit 17ad76b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/lexer/language.lua
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,33 @@ local language = {
rshift = "function",
},

buffer = {
copy = "function",
create = "function",
fill = "function",
fromstring = "function",
len = "function",
readf32 = "function",
readf64 = "function",
readi8 = "function",
readi16 = "function",
readi32 = "function",
readu16 = "function",
readu32 = "function",
readu8 = "function",
readstring = "function",
tostring = "function",
writef32 = "function",
writef64 = "function",
writei16 = "function",
writei32 = "function",
writei8 = "function",
writestring = "function",
writeu16 = "function",
writeu32 = "function",
writeu8 = "function",
},

coroutine = {
close = "function",
create = "function",
Expand Down

0 comments on commit 17ad76b

Please sign in to comment.