Christian Petersen

Results 64 comments of Christian Petersen

At the moment, I have been busy with some other projects. I will keep up to date when I figure something out. This is not quite an easy fix, as...

@turbobabr Can you elaborate on which approach you have discovered? And what changes needs to be done in order to fulfill this?

Spider got its tenary operator style from Swift. I also thought of doing the last style. It's much more compact and still easy to distinguish.

I see the point of not changing `??`. However, `foo ?= baz` could as well be a shortcut to `foo = foo ?? baz` for a shorter syntax: ``` js...