-
This proposes a language feature that allows guarding parts of programs based on conditions such that the analyzer and the compiler can statically verify that those parts are accessed correctly.
Th…
-
We end up seeing guard clauses for `string.IsNotNullOrWhiteSpace` all the time (with their accompanying `ArgumentException`).
This should be easy - let's add `NotNullOrWhiteSpaceString` (or somethi…
-
-
"Add the necessary methods so that modifications to the collection can be made not through a getter to the collection."
![image](https://github.com/leijurv/Java-Projects/assets/116392563/2a1466a2-f…
-
**Steps to Reproduce**:
```cs
#nullable enable
public class C {
void M(object obj)
{
string? s = "";
switch (obj)
{
case IA _ when MA(out s):…
-
I would kindly ask for the addition of a "Simplify Nested Conditionals" feature to the Plugin. This tool would help with code readability by automatically flattening and simplifying complex nested con…
-
**Description**
Unable to use the "dig" function from [Sprig.](https://masterminds.github.io/sprig/dicts.html)
Now I have to write multiple guard clauses just to go through a dictionary.
**Rele…
-
Right now, calling `order()` multiple times, incorrect SQL is generated:
```
... ORDER BY `route_poi`.`order` ORDER BY `poi`.`id`'
```
It would be nice if node-sql would guard me from generating inv…
-
We can refactor these if statements with [Guard Clauses](https://learningactors.com/javascript-guard-clauses-how-you-can-refactor-conditional-logic/)
https://github.com/maitraysuthar/rest-api-nodej…
-
![image.png](https://raw.githubusercontent.com/cedricongjh/pe/main/files/e3fa7a74-4e7c-401f-baba-b301fd419821.png)
There are 2 issues: firstly, the true and false in confirm to proceed with command s…