Summer Knight

Results 59 comments of Summer Knight

To get the functionality that was previously available in `@testing-library/react-hook`, I came up with this chunk of code: (it's basically the same code as `renderHook`, with the extra `error`-handling) ```tsx...

As of 0.9.x, the macro API is mostly stable. I do need to document all the methods and such, though. I also want to add support for async macros and...

You are correct. There are a few minor naming things I want to change (e.g. cacheable to is-cacheable), and adding more documentation to each part involved, but other than that,...

GorillaScript currently doesn't differentiate the two types of access, they're seen as equivalent and thus compile to the smallest possible representation. I'm not sure if I want to introduce the...

It is relevant because there's no way to make sure that every non-quoted part stays non-quoted nor should one expect that every quoted part remain quoted. Adding such functionality would...

I don't see the benefit of having it look completely different from the other tokens. One would be able to do `#(a, b, c)@^%` to have it curried, bound to...

I actually was thinking about this and is likely the way I'll be going. You'd be able to register a single-character token that you could postfix a function's parameter list...

Well, I'm not against the idea of >1 char signifiers on functions, but I'm not sure what the best syntax for specifying it would be. Sure the single char sigils...

Ooh, yeah, I can see where the confusion comes in here. I'll rewrite the section to be much clearer, possibly with a full example.