OverHash

Results 26 issues of OverHash

Consider this code: ```luau local function runCode(billboard: BillboardGui & { TextLabel: TextLabel, }): () billboard.TextLabel.Text = "Hello" end ``` this produces an error: ``` TypeError: Type 'BillboardGui & { TextLabel:...

bug
new solver

In the new solver, the following code: ```luau --!strict type Item = { age: number } type ReadonlyItem = { read age: number } local function birthday(arg: Item): () end...

bug
new solver

Consider this code example: ```luau type Item = { specialAttributes: { string }? } local myItem: Item = {} myItem.specialAttributes = {} table.freeze(myItem.specialAttributes) -- errors! ``` This produces a type...

bug
new solver

Consider this code: ```luau --!strict type Item = "Doge" | "Doge2" local function pickItem(): Item return "Doge" end local myItem = pickItem() myItem = "Doge" -- for debugging purposes, force...

bug

Consider this code: ```luau --!strict type Room = { roomNumber: number, model: Model, } local rooms: {Room} = {} local latestRoom: Room? = nil for _, room in rooms do...

bug
new solver

The following input: ``` a1_jet_fuel = $2.057 USD / gal =$2.06 / gal plane_fuel = 330.35 gal/hr =330.35 gal / hr ((a1_jet_fuel * plane_fuel) * 1hr in NZD) / hr...