OverHash
OverHash
Fixed in release [663](https://github.com/luau-lang/luau/releases/tag/0.663)
> This is due to the recent updated Wine builds used in the Flatpak to use the merged 'childwindow' implementation rather than a patched one, giving different behavior as a...
You are confusing the terminology of key weights and scores. A high score indicates a high distance away from the target query. Thus, lower score => more relevant. A key...
Hey @hackyon-anthropic, I'll attach some videos to better explain. https://github.com/user-attachments/assets/07f8cafd-c80d-4b96-b3af-cd7dae81fa94 Video 1 here shows us using Claude Code to add some items to a file, but we make a manual...
Accordingly perhaps this issue should be renamed after my triaging just now. Maybe "Integrate manual edits in diff viewer into model conversation" is more appropriate.
Notably if you reduce the definition of `TypedRemoteEvent` down to simply ```lua type TypedRemoteEvent = { OnClientEvent: TypedEvent, OnServerEvent: TypedEvent } ``` then there is no errors. It is the...
Even stranger: if you reduce `TypedRemoteEvent` down to ```lua type TypedRemoteEvent = { FireClient: (player: Player, T...) -> (), FireAllClients: (T...) -> (), FireServer: (T...) -> (), OnClientEvent: TypedEvent, OnServerEvent:...
I just tried this repro again, and it looks like it's working now? Strangely I tried with a super old luau-analyze and it also worked, so not sure what magic...
A simpler reproduction, if it helps: ```luau --!strict local MyModule = {} MyModule._isEnabled = true :: boolean assert(MyModule._isEnabled, `type solver`) MyModule._isEnabled = false -- Produces 'TypeError: Type 'false' could not...