We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5dd8f commit 3a25262Copy full SHA for 3a25262
lute/std/libs/luau.luau
@@ -10,13 +10,13 @@ local path = require("@std/path")
10
11
local luau = {}
12
13
-export type Bytecode = luteLuau.Bytecode
+export type bytecode = luteLuau.Bytecode
14
15
-function luau.compile(source: string): Bytecode
+function luau.compile(source: string): bytecode
16
return luteLuau.compile(source)
17
end
18
19
-function luau.load(bytecode: Bytecode, chunkname: string?, env: { [any]: any }?): (...any) -> ...any
+function luau.load(bytecode: bytecode, chunkname: string?, env: { [any]: any }?): (...any) -> ...any
20
return luteLuau.load(bytecode, if chunkname ~= nil then `@{chunkname}` else "=luau.load", env)
21
22
0 commit comments