Ary Borenszweig

Results 414 comments of Ary Borenszweig

Yeah... maybe we can try casting return values to the return type annotations. But that menas that if a method returns `HTTP::FixedLengthContent` but it says it returns `IO`, the effective...

I believe this can be done, but it will be tricky. A `fun` is different from a `def` in that it always have types, and these are eagerly checked, and...

If we go this direction, I think `--error-trace` should disappear. I think we can always show the full trace in that compact format, assuming we only show one line of...

My suggestion for tackling this: revert the work done to improve the error messages that was done in the past, and then work on the original code base. The original...

Sounds good. It's just that when I tried to actually implement what is described in the issue I couldn't understand the new code so I gave up. It probably just...

It would be nice to profile the benchmark program then, to see where most time is spent.

It's interesting because in the last benchmark one can see that GC_malloc takes a lot of time, being called by deflateInit2. What's the benchmark of Libc.malloc is used? Maybe that...

There's also no good way to have static lookup tables in Crystal like they do in C, but once there's a Ryu implementation we'll see.

I guess C will dump those static lookup tables to the data segment of the program. In Java it seems they are initialized at runtime. In Crystal it'll probably be...