nothing

Results 13 issues of nothing

**Describe the bug** When moving between titles in Checkpoint too quickly, the app crashes. **To Reproduce** Steps to reproduce the behavior: 1. Enter Checkpoint 2. Move your cursor around quickly...

bug
3ds

As of release 0.634, the following code (with a newline at the end of it) causes the column count in luau-analyze to underflow: ```luau local function _test(): boolean if true...

bug

As of release 0.628, attempting to index a table which has the type of a union/intersection only consisting of the same type throws a TypeError. This can be reproduced with...

bug
fixed by new solver

As of version 0.642, the following code in the new solver's strict mode causes the linter to crash completely, becoming unresponsive and replacing all type errors with a "subtyping test...

bug
new solver

As of version 0.642, table types with fields being a generic type are incompatible with the table type `{[K]:V}` in the new solver, causing type errors when passed to functions...

bug
new solver

As of version 0.655, type functions can be named "typeof", which appears to be an oversight as type aliases can't be named typeof and cause a syntax error when attempting...

bug
new solver

As of version 0.665, checking for a property on a table type where the key does not exist does not cause an error, and instead adds the key to the...

bug
new solver

As of version 0.664, writing to a readonly property using a compound assignment statement does not cause a type error. Writing the assignment as `t.p = t.p + 1` does...

bug
new solver

As of version 0.663, the vector type is compatible with array types and the empty table type. This causes problems where a type error should be reported, but simply doesn't...

bug
new solver

As of version 0.663, an error from a user-defined type function is silenced if it is called via a function argument with a generic parameter. Calls to `print` work normally,...

bug
new solver