mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
Merge branch 'main' into chore/dev-profile
This commit is contained in:
commit
97371d2e62
3 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
[tools]
|
[tools]
|
||||||
luau-lsp = "JohnnyMorganz/luau-lsp@1.20.0"
|
luau-lsp = "JohnnyMorganz/luau-lsp@1.23.0"
|
||||||
selene = "Kampfkarren/selene@0.24.0"
|
selene = "Kampfkarren/selene@0.25.0"
|
||||||
stylua = "JohnnyMorganz/StyLua@0.17.0"
|
stylua = "JohnnyMorganz/StyLua@0.18.1"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
local roblox = require("@lune/roblox")
|
local roblox = require("@lune/roblox") :: any
|
||||||
local Instance = roblox.Instance
|
local Instance = roblox.Instance
|
||||||
local Color3 = roblox.Color3
|
local Color3 = roblox.Color3
|
||||||
local Enum = roblox.Enum
|
local Enum = roblox.Enum
|
||||||
|
|
|
@ -74,11 +74,11 @@ local luau = {}
|
||||||
```
|
```
|
||||||
|
|
||||||
@param source The string that'll be compiled into bytecode
|
@param source The string that'll be compiled into bytecode
|
||||||
@param CompileOptions The luau compiler options used when compiling the source string
|
@param compileOptions The luau compiler options used when compiling the source string
|
||||||
|
|
||||||
@return luau bytecode
|
@return luau bytecode
|
||||||
]=]
|
]=]
|
||||||
function luau.compile(source: string, CompileOptions: CompileOptions?): string
|
function luau.compile(source: string, compileOptions: CompileOptions?): string
|
||||||
return nil :: any
|
return nil :: any
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue