Skip to content
Closed
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
4 changes: 3 additions & 1 deletion docs/advanced/compiler-annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,9 @@ MyClass = __TS__Class()

</SideBySide>

## @forRange
<DeprecatedInVersion deprecated="0.38.0" removed="TBD" />

### @forRange

**Target elements:** `declare function`

Expand Down
4 changes: 2 additions & 2 deletions docs/advanced/language-extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ const scaled: Vector = Vector.mul(a, 2);
- LuaAddition / LuaAdditionMethod (`a + b`)
- LuaSubtraction / LuaSubtractionMethod (`a - b`)
- LuaMultiplication / LuaMultiplicationMethod (`a * b`)
- LuaDivision / LuaDivisionMethod (`a /b `)
- LuaDivision / LuaDivisionMethod (`a / b`)
- LuaModulo / LuaModuloMethod (`a % b`)
- LuaPower / LuaPowerMethod (`a ^ b`)
- LuaFloorDivision / LuaFloorDivisionMethod (`a // b`, only when targeting Lua 5.3 or later)
- LuaNegation / LuaNegationMethod (`-x`)
- Bitwise operators (only when targeting Lua 5.3 or later)
- LuaBitwiseAnd / LuaBitwiseAndMethod (`a & b`)
- LuaBitwiseOr / LuaBitwiseOrMethod (`a | b`)
- LuaBitwiseExclusiveOr / LuaBitwiseExclusiveOrMethod (`a ^ b`)
- LuaBitwiseExclusiveOr / LuaBitwiseExclusiveOrMethod (`a ~ b`)
- LuaBitwiseLeftShift / LuaBitwiseLeftShiftMethod (`a << b`)
- LuaBitwiseRightShift / LuaBitwiseRightShiftMethod (`a >> b`)
- LuaBitwiseNot / LuaBitwiseNotMethod (`~x`)
Expand Down