JohnnyMorganz

Results 418 comments of JohnnyMorganz

This also fails for type intersections, potentially related to the same issue, but may be separate? ```lua type Foo = { Bar: string, } & { Baz: number } local...

I wanted to see if it was easy enough to patch in the current type checker. It seems the `getIndexTypeFromType` function already reduces a union of tables into its common...

Another example, I think this might also fall under the type states feature: ```lua local Example: Instance? = workspace:FindFirstChild("SpecialPart") if not Example then Example = Instance.new("Part") Example.Name = "SpecialPart" --...

I don't know how the internals of the recent control flow analysis stuff works, but is it possible to maybe build off that to get something like the following to...

Hey folks, just wondering whether there was any movement on this? I recently stumbled on the exact same issue as in https://github.com/junit-team/junit5/issues/1223 where we had junit4 tests being run in...

There seems to actually be an error in the Roblox Presence API docs: https://presence.roblox.com/docs#!/Presence/post_v1_presence_users Here, they document `userPresenceType` to be a string, and give the example as such, but if...

Can confirm the issue is fixed with that commit, thank you! Sorry to hijack an existing issue, but maybe you folks know what's up here. We've been getting a flaky...

Opened #22945. Sorry we couldn't be more helpful with a repro, there is no consistent reproduction yet. We did disable skymeld and see zero instances of the crash in our...

I made one a while ago but it is not up to date nor have i checked its correct. Might be reasonable to build off though: https://github.com/JohnnyMorganz/tree-sitter-luau The custom requests...

Going to close this as completed now that https://github.com/4teapo/zed-luau exists. Thank you 4teapo!