Niles Salter
Niles Salter
Has [Pijul](https://pijul.org/) ever been considered for versioning?
@mbourne What you described is the motivation for this issue. Imagine you pass in a raw string to a graph renderer saying the x axis should be labeled `"𝑥 -...
Since this isn't a real library, could this be excluded from the lint check?
The first TypeScript I ever wrote fixed this bug in the original compiler. https://github.com/roblox-ts/roblox-ts/pull/51
Make sure to handle [this case](https://roblox-ts.com/playground/#code/DYUwLgBAHhC8EAYDcAoAzgdwJZgMYAsIAKKASggG8UIaJcBDNECARgC5rav8B7LNMCAAmRUqi5cARgCcQ9ANbjaDJhABMHCbQBmAVwB2uMFh76IvfoJHkqWrQAdpWfWCIAiCwOFuxnLQF8-CRk5RRR-IA) correctly: ```ts let x = 0; switch (x) { case 1: hoisted(); break; case 2: function hoisted() { print("hoisted"); } break; } ```
```lua function Math.CompoundTransparency(a, b) -- For when you need something to have a Transparency of a Transparency. -- For example, a Ripple whose "Color" is Black with 0.46 Transparency (for...
For now, this is an intentional design limitation of TS. See https://github.com/microsoft/TypeScript/issues/35451 & https://github.com/microsoft/TypeScript/issues/44513 & https://github.com/microsoft/TypeScript/issues/33201. You can opt-in to having this behavior checked by making the first parameter of...
> The existence of the re-indexing in both cases is significant, and not something I think we should just skip over when dealing with this. Although reversed, an example is...
> In fact, it's also just wrong to re-index compared to JS behaviour: https://www.typescriptlang.org/play?#code/MYewdgzgLgBAhjAvDA3gWAFAEgDmBTWAIwAoBKVTLLAJwIFdqwYAiYZgbkoF8AaSiAjBIAHAFwxo1AJZgc5dNizdMXTJlCQQAGzwA6LSBzE4uwkhYATZqSA Correct. For reference, this is how the old compiler handled the previous example: ```lua -- Compiled...
Here is another test case: ```zig test "break from named while loop in an inline while loop sandwich" { var n: u32 = 0; comptime var b = false; inline...