Yuval Simon

Results 10 issues of Yuval Simon

It accepts a collection of declaration fragments and considers fragments without initializers as dead variables (without checking the following code). Maybe need better name for this method? Check out 48090bbb5cd93c8987ed9033751bcd623f2301eb...

bug

- [x] Use a picture, photo or distinct avatar. Don''t use an automatic icon. - [x] Make sure you present yourself by a readable **nick**. - [x] Describe yourself in...

Quality assurance

When spartanizing using SingleFlater (mouse wheel) all the tippers are enabled and not only those as configured. Should it be this way?

bug

review d362a447e5b36260959d81ee2e46b13f068151d6 (it did not use the local git configuration)

bug

Allow the user to configure a widget operation that executes several other operations (such as spartanize, then clean up, then git commit/push)

On hold
new-widget-operation

With the tipper AssignmentAndAssignmentOfSameValue: ``` class Element extends AccessibleObject implements Member { private final AccessibleObject accessibleObject; private final Member member; Element(M member) { checkNotNull(member); this.member = this.accessibleObject = member; }...

bug

In `iz.literal(ASTNode,int)` we get _NumberFormatException_ for the literal _0x1p31_ since it is considered an integer. need to check the type correctly in method NumericLiteralClassifier.type(), but it can be both float...

bug

Currently can use givesWithBinding only once, after one use there is no binding information for the modified class. I think we can put up with it because we don't have...

bug
On hold

``` String output; while ((output = input.readLine()) != null) { System.out.println(output); } ``` goes to ``` for (String output = input.readLine(); output != null;) { System.out.println(output); } ```

bug

## Description This PR adds flags `--agent-namespaces-mode=[active|passive]` and `--agent-objects-mode=[active|passive]` to `zarf init` command. By default, both are set to _active_. When using either of them to _passive_, _MutatingWebhookConfiguration_ will be...