Ori Bernstein
Ori Bernstein
I'd like to point out that I haven't been involved in the web assembly effort, and I'm not maintaining any large or widely used compilers (just my own toy-ish language,...
``` We print routes using 'via' internally. This commit is largely here because it's easy to rubber stamp. ```
Currently, we use Dragon4, but something faster would be nice. Grisu3 looks interesting, but this looks more interesting: http://cseweb.ucsd.edu/~lerner/papers/fp-printing-popl16.pdf
Right now, things like: ``` const f = { while true if do_thing -> 123 ;; ;; } ``` will complain because there's no return after while true. Trivially untaken...
It would be nice to have a simple way of parsing humanized dates, 2 days ago Jan 1 2016, 11:00 pm and so on. This doesn't have to be super-flexible,...
TLS (in the sense of SSL) shows up everywhere when communicating with the outside world. Designing and implementing an API for this (possibly wrapping C libraries like libressl) would be...
Cross compile environments should be available by default, and no further than a `mbld -p platform` or similar away.
If an integer is specified with a suffix, we fix the type instead of the bit-width, making it impossible to assign to a typedefed type without both a cast and...
Right now, we generate comments in textual assembly. This is very useful, and without data types information, makes it easier to debug than source level debugging. Before debug symbols can...
Update to use newer unicode tables. These should be generated from UnicodeData.txt. Libutf8rewind seems to do a good job of encoding the unicode tables; we should look at what they're...