Results 127 comments of Adam Gausmann

I've found a pretty neat way to completely integrate `juniper` with `graphql-client` in my full-stack webapp, I hope it can be useful for you all as well. [(Repository)](https://github.com/agausmann/phr) My app...

~~Turns out it's not that simple, since the proc-macro doesn't have access to `OUT_DIR`.~~ I was mistaken, the proc macro does have access to the crate's environment.

> The version of `avr-libc` that's distributed most commonly does not contain the CRT (C runtime) for `avrxmega3`. The version shipped by Arduino does, but telling people they need to...

+1 from me. I'd also like to suggest an operator that says whitespace is required between two rules. I can't do this in normal mode with whitespace defined and adding...

@CAD97 There are languages where whitespace matters. The best practical example I can give is Haskell, where whitespace is a token used as the function application operator - `foo x`...

Sure, that absolutely makes sense. I think I'd personally be fine with defining something like `wsp = @{ (WHITESPACE | COMMENT)+ }` and using it explicitly with the new adjacent...

This would be a great feature to have! Personally I think the right way to incorporate this is to keep the public APIs involving `PrecClimber` at least until next major...

I was just passing by, but I had a realization that might be helpful - The current definition of `steal()`, which affects future calls to `take()`, can be implemented as...

Either way it's probably good to state in the docs how it affects `take()`, whether or not it does.

Been a while since I used this, but I may be able to finish that this week.