Tim Hutt
Tim Hutt
I had a good go at this, but ran into two issues: * It's really hard to tell what the types of loads of the functions in `parser.ts` take -...
This is all really unclear. I can kind of see that you use `rust_repository_set()` or maybe `rust_register_toolchains()` like this ``` rust_register_toolchains(extra_target_triples=["riscv32i-unknown-none-elf"]) ``` (Though the docs for `rust_register_toolchains()` basically say not...
Ok it seems like Bazel's model is that there is only one target per compilation. Unfortunate. I guess that's all Google really needs internally. Apparently you need to use [custom...
Rather than using a regex (bit tedious), there are a couple of other options: 1. Mentioned in #135, add a comment tag like: // TOUR: 123 2. Use Git itself...
I think the missing documentation is pretty clear to be honest: * How do you actually get the nice errors mentioned in the readme? For me it just prints a...
This is sorely needed! I don't really get why `Rule`s are all untyped when Pest has all the type information available and is a code generator! As far as I...
> This is probably fine if you intend to build up an AST-like node tree anyway Exactly! I think this should be optional because *sometimes* you want extreme speed and...
Sounds good! By the way I found [someone has articulated this issue much better than me](https://phaazon.net/blog/glsl-pest-part-1#is-it-really-a-parser).
Presumably there should be: * `warp::reject::unmatched()` - this filter didn't match but it could be valid for a different filter. * `warp::reject::not_found()` - the request was definitely intended for this...
It would help if you included the actual warning. I assuming its the same thing I'm getting: Property 'children' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes & Pick &...