Patrick LaFontaine

Results 156 comments of Patrick LaFontaine

@yannham I think I ran into this yesterday and it felt like a pretty big foot gun. What are the options in terms of mitigating this? Also maybe this should...

I use https://github.com/Guyutongxue/VSC_LalrpopHighlight

It was relatively unknown to me but lalrpop has rudimentary cfg support in https://github.com/lalrpop/lalrpop/blob/master/doc/src/conditional-compilation.md . Not that this helps entirely here, but it does provide a road map for future...

I think this has been fixed in https://github.com/TheDan64/inkwell/pull/428?

Is this still reproducible? I've done something similar with https://github.com/sampsyo/bril/blob/main/bril-rs/bril2json/src/bril_grammar.lalrpop and afaik that works as expected(I've also been trying to get lalrpop to pass more of these lints). How do...

Can I shamelessly plug a mini-project of mine? https://github.com/sampsyo/bril/tree/main/bril-rs/brillvm Assuming you already have a frontend, it shows how to use the Inkwell bindings to compile your IR to LLVM or...

Hey! This is a really cool project! I'm glad that overall, the rust code base was fairly extensible for supporting your extension. I created a pr, #306, to help address...

> Unresolved promises are automatically cleaned up when they go out of scope. This is a fine design decision but at the risk of overstepping, I think this is unnecessarily...

> The heap is thread-unsafe, allowing multiple threads to concurrently read/write to the heap without checking. This is done using Rust unsafe blocks. Alternatively, we could've used a Rw to...