David Piepgrass

Results 132 comments of David Piepgrass

C# has finalized their precedence for `..` and it is _different_ from Swift: `a .. b * c` means `(a..b)*c` in C# but `a..(b*c)` in Swift. I've decided that it...

Looks like I left out a definition of `` in the source code. I've decided to give it a precedence slightly higher than other comparison operators because this operator is...

I've reproduced the bug - including the variant where `new P()::p;` on a line by itself produces uncompilable code - and I should point out that `with` is not compatible...

To assist, I prepared a table of [All Unicode Characters On One Page](http://david.loyc.net/misc/CharCategories.html).

Just committed an initial version of `LNodeList` for 2.8.0.0. It is still based on VList and defines implicit conversions to and from `VList`.

A couple of other things to note about properties... - Since `get` and `set` are binary operators it is necessary to give an argument even if a body would be...

The other day I was thinking it would be nice to have a language that supports shorthand operators for `public`/`export`, `private`, `virtual` etc... Foo() => {} // default accessibility (package?)...

I dunno, any thoughts on this @jonathanvdc? One could also argue that we ought to have keywords on all members anyhow, to aid grepping - I'd particularly like a keyword...

Ahh. I thought that `?.` was a single operator (rather than a pair of separate tokens) so that's what the parser currently expects.

I wasn't aware of this tool before, but I just downloaded it and gave its interactive mode `dotnet script` a try. Not surprisingly, I got this result: > namespace X...