mirror of
https://github.com/lune-org/docs.git
synced 2025-04-03 18:10:54 +01:00
Update API reference
This commit is contained in:
parent
7581bc4ea3
commit
63db4ac8c7
3 changed files with 114 additions and 0 deletions
|
@ -28,6 +28,11 @@ else
|
|||
name = latestTag
|
||||
end
|
||||
|
||||
-- Create the temp dir if we don't have one
|
||||
if not fs.isDir("temp") then
|
||||
fs.writeDir("temp")
|
||||
end
|
||||
|
||||
-- Remove any previously downloaded repository folder
|
||||
if fs.isDir("temp/repository") then
|
||||
fs.removeDir("temp/repository")
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"fs": "FS",
|
||||
"luau": "Luau",
|
||||
"net": "Net",
|
||||
"process": "Process",
|
||||
"roblox": "Roblox",
|
||||
|
|
108
pages/api-reference/luau.md
Normal file
108
pages/api-reference/luau.md
Normal file
|
@ -0,0 +1,108 @@
|
|||
# Luau
|
||||
|
||||
Built-in library for generating luau bytecode & functions.
|
||||
|
||||
#### Example usage
|
||||
|
||||
```lua
|
||||
local luau = require("@lune/luau")
|
||||
|
||||
local bytecode = luau.compile("print('Hello, World!')")
|
||||
local callableFn = luau.load(bytecode)
|
||||
|
||||
-- Additionally, we can skip the bytecode generation and load a callable function directly from the code itself.
|
||||
-- local callableFn = luau.load("print('Hello, World!')")
|
||||
|
||||
callableFn()
|
||||
```
|
||||
|
||||
## Functions
|
||||
|
||||
### compile
|
||||
|
||||
Compiles sourcecode into Luau bytecode
|
||||
|
||||
An error will be thrown if the sourcecode given isn't valid Luau code.
|
||||
|
||||
#### Example usage
|
||||
|
||||
```lua
|
||||
local luau = require("@lune/luau")
|
||||
|
||||
local bytecode = luau.compile("print('Hello, World!')", {
|
||||
optimizationLevel: 1,
|
||||
coverageLevel: 0,
|
||||
debugLevel: 1,
|
||||
})
|
||||
```
|
||||
|
||||
#### Parameters
|
||||
|
||||
- `source` The string that'll be compiled into bytecode
|
||||
|
||||
- `CompileOptions` The luau compiler options used when compiling the source string
|
||||
|
||||
#### Returns
|
||||
|
||||
- luau bytecode
|
||||
|
||||
---
|
||||
|
||||
### load
|
||||
|
||||
Generates a function from either bytecode or sourcecode
|
||||
|
||||
An error will be thrown if the sourcecode given isn't valid luau code.
|
||||
|
||||
#### Example usage
|
||||
|
||||
```lua
|
||||
local luau = require("@lune/luau")
|
||||
|
||||
local bytecode = luau.compile("print('Hello, World!')")
|
||||
local callableFn = luau.load(bytecode, {
|
||||
debugName = "'Hello, World'"
|
||||
})
|
||||
|
||||
callableFn()
|
||||
```
|
||||
|
||||
#### Parameters
|
||||
|
||||
- `source` Either bytecode or sourcecode
|
||||
|
||||
- `loadOptions` The load options used when creating a callbable function
|
||||
|
||||
#### Returns
|
||||
|
||||
- luau function
|
||||
|
||||
---
|
||||
|
||||
## Types
|
||||
|
||||
### CompileOptions
|
||||
|
||||
The Luau compiler options used in generating luau bytecode
|
||||
|
||||
This is a dictionary that may contain one or more of the following values:
|
||||
|
||||
- `optimizationLevel` - Sets the compiler option "optimizationLevel". Defaults to `1`
|
||||
- `coverageLevel` - Sets the compiler option "coverageLevel". Defaults to `0`
|
||||
- `debugLevel` - Sets the compiler option "debugLevel". Defaults to `1`
|
||||
|
||||
Documentation regarding what these values represent can be found here;
|
||||
|
||||
- https://github.com/Roblox/luau/blob/bd229816c0a82a8590395416c81c333087f541fd/Compiler/include/luacode.h#L13
|
||||
|
||||
---
|
||||
|
||||
### LoadOptions
|
||||
|
||||
The Luau load options are used for generating a lua function from either bytecode or sourcecode
|
||||
|
||||
This is a dictionary that may contain one or more of the following values:
|
||||
|
||||
- `debugName` - The debug name of the closure. Defaults to `string ["..."]`
|
||||
|
||||
---
|
Loading…
Add table
Reference in a new issue