Merge branch 'main' into chore/dev-profile

This commit is contained in:
Erica Marigold 2023-08-27 20:26:06 +05:30 committed by GitHub
commit 97371d2e62
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -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"

View file

@ -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

View file

@ -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