Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions generated/lua_keywords_pretty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ This file is auto-generated by https://github.com/secondlife/lsl-definitions. --
<key>tooltip</key>
<string>Luau export keyword: declares a type that can be used in outside this module.</string>
</map>
<key>read</key>
<map>
<key>tooltip</key>
<string>Luau read keyword: declares a type field is read-only.</string>
</map>
<key>write</key>
<map>
<key>tooltip</key>
<string>Luau write keyword: declares a type field is write-only.</string>
</map>
<key>in</key>
<map>
<key>tooltip</key>
Expand Down
2 changes: 2 additions & 0 deletions lsl_definitions/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,14 @@ def from_definition(cls, definition: dict | bool) -> Deprecated | None:
"nil",
"not",
"or",
"read",
"repeat",
"return",
"then",
"true",
"until",
"while",
"write",
}
)

Expand Down
4 changes: 4 additions & 0 deletions slua_definitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2949,6 +2949,10 @@ controls:
tooltip: "Lua local keyword: declares a local variable or function."
export:
tooltip: "Luau export keyword: declares a type that can be used in outside this module."
read:
tooltip: "Luau read keyword: declares a type field is read-only."
write:
tooltip: "Luau write keyword: declares a type field is write-only."
in:
tooltip: "Lua in keyword: used in generic for loops to iterate over elements."
not:
Expand Down
Loading