ArchLand64
ArchLand64
Here are my VSCode and Roblox Studio versions of Rojo   Here is the repro file of the problem: [rojo_bug.zip](https://github.com/rojo-rbx/rojo/files/9058218/rojo_bug.zip) This shows up in output when...
I would like Luau-LSP to copy Roblox Studio's "Type Inference Modes" behavior documented here: https://luau-lang.org/typecheck#type-inference-modes This makes it easier to use other people's code that also uses these annotations without...
`self` is the incorrect parameter name for `workspace.Changed:Connect()`'s first explicit parameter.  
WorldRoot.Raycast should return `RaycastResult?` as documented here: But luau-lsp shows the return type as just `RaycastResult`  RaycastParams.FilterDescendantsInstances should be typed as `{Instance}` instead of `{any}`.  OverlapParams does not...
Luau-lsp does not recognize required modules defined in rbxms. However, the instance of the ModuleScript is still recognized by luau-lsp. I expect requires of ModuleScripts defined in .rbxms to work...
A common pattern that I do in my code is use large comments to organize all the different types of functions that I write. My problem is that those large...
The code below fails to typecheck the second incorrect index of `prices` because `pairs` is appending `[string]: a` to the type of `prices`. ```lua --!strict local prices = { hat...
The following code demonstrates the bug: ```lua --!strict type Direction = "Left" | "Right" | "Up" | "Down" local Instructions: { Direction } = { "Left", "Down" } for _,...
I get a false type error and the type of `weld` incorrectly becomes never after an assert with the new Luau type solver enabled in Roblox Studio. `weld` should remain...