Tim Whiting

Results 453 comments of Tim Whiting

As far as this issue goes, I believe we should add some debug statements to the handler code to catch things like this at runtime (in debug mode), and a...

One alternative to this is to just have `tree` carry it's own sort function - bad idea for a recursive datastructure - because of wasted space, or wrap tree with...

Hmm, that's interesting. I didn't know that handlers could use (`->`). I think the reason it is needed in `match` stems from the ability for match patterns to include guards....

Yeah, this happens in the C backend as well with the time libraries. I think it has to do with the main function being split into it's own module at...

I'm a bit worried about the docs for this because the vector use case mentioned isn't really accurate, we need something like #716 or #550 for vectors to be able...

Yeah, that is the core difference. Access only makes the `ref` seem like a local (i.e. no escaping the scope and implicit dereferencing). Under the hood it is still just...

It seems to have been introduced by the fix to #705. I've pushed a fix that works for both issues, but I still have questions for Daan about the fix....

Reopening to address the second issue. PR open, but there are some problems with more complex arguments.

Even surrounding `it` by `()` like the grammar wants still has this error.