justhecuke
justhecuke
If I want to, for example, add a symbol with a value to a list, that is not possible right now. ``` buildozer 'add tags SOME_CONST' //pkg:target --> some_rule( name...
### What happened? ``` $ bazel --version aspect 5.8.20 $ echo '//:all' > queryfile.txt $ bazel query --query_file queryfile.txt ``` Results in an interactive prompt: ``` Use the arrow keys...
Hey, Our team tried to enable `CommonSubexpressionEliminationPass` but gave up on it when it took ~50m to run by itself. After looking at the code, the likely cause of the...
Right now, if Redex crashes inside of a `walk::parallel::*` method the stack trace is largely unintelligible which makes debugging issues extremely difficult and irritating. For example, I've got a crash...
SingleImplPass searches for interfaces with only a single implementor class and then merges the interface into the implementor. This includes merging annotations, in particular the EnclosingClass, EnclosingMethod, InnerClass, and MemberClasses...
My team and I have been developing passes for use internally but we commonly hit an issue where we interact with deobfuscated names (perhaps from a hardcoded list, `usage.txt` from...
It seems that IRTypeChecker will trigger on an `INVOKE_SUPER` when called legally on an interface method with a default implementation. I don't have a good minimal reproduction, but it should...
### Problem: UBSAN is triggering on misuse of `is_available` with `s2n_stream_cipher_rc4_available` from https://github.com/aws/s2n-tls/blob/a56e9bfdda830e712f4674055af85cc573a38efe/crypto/s2n_stream_cipher_rc4.c#L33 . `s2n_cipher_suites.c:985:17: runtime error: call to function s2n_stream_cipher_rc4_available through pointer to incorrect function type 'unsigned char (*)(void)'`...
The properties need to have `T | None` typing to be correct, due to `_NotSetType`'s `value` of None, and the possibility that a completed set of data does not have...