Charles Taylor
Charles Taylor
Empty braces are printed inline for classes & structs, but printed on separate lines for `if` statements and method blocks. e.g. ```csharp // inline class Foo { } // separate...
Support for [stackalloc initializers](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-7-3#stackalloc-arrays-support-initializers).
Support for C# 7 [numeric literal improvements](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-7#numeric-literal-syntax-improvements). Specifically: - [binary literals](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-7.0/binary-literals) - [digit separators](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-7.0/digit-separators) - [leading digit separators](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-7.2/leading-separator) (C# 7.2)
For whatever reason, you can have an empty `case` switch section, but not an empty `default` switch section. I don't know why the compiler allows this, but so should we....
- There's no event `touchbegin`, so replacing it in the examples with [touchstart](https://developer.mozilla.org/en-US/docs/Web/API/Element/touchstart_event) - Fixed up some deadlinks.
### Problem The documentation for the `wait` command advertises syntax that doesn't actually parse. On this page of the docs: https://hyperscript.org/commands/wait/#description This snippet: ``` wait for load or 1s if...
Type directed search doesn't work, for the browser UI. Searching for `a -> a` should return a list including `identity :: forall a. a -> a`, and as well as...
Spun off from this conversation: https://github.com/purescript/spago/pull/1063/files#r1352609435 Here's what the docs html page looks like: There's a few issues, we'd like to address: (1) Instead of throwing all the workspace modules...
Right now `unknown` isn't supported: If I try to check ```ts function returnsUnknown(): unknown { return 2; } ``` I get `Cannot find type unknown`. --- Based on the Ezno...
```ts function loops(): never { while (true); } loops() satisfies never ``` When I check this block of code I get an error of "Cannot find type never". I suspect...