github / github/codeql-cli-binaries
Suggestion: `boolean(<formula>)` expression
- Lingua principale
- Nessun dato sulla lingua
- Stelle
- 1k
- Fork
- 184
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Especially when debugging queries it can often be interesting to know whether a predicate (or a relation) holds or not. However, you can only use expressions in result sets, requiring you to manually get a `boolean` value for the predicate in question, e.g.:
```ql
import java
from Method m, boolean isStatic
where
if m.isStatic() then isStatic = true
else isStatic = false
select m, isStatic
```
Therefore it might be useful to introduce a `boolean()` expression. If the formula holds, then the result is `true`, otherwise `false`:
```ql
import java
from Method m
select m, boolean(m.isStatic())
```
Guida per i contributori
Apri la guida per i contributori
Direzione di ricerca
The issue names no files, tests, or implementation entry points. Start by locating the query-expression implementation and existing result-set expression tests, then compare their handling of predicates with the examples in the issue. Done means a boolean() expression evaluates to true or false and is covered by tests.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Ambito
- devtools
- Tipo di issue
- Funzionalità
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 30/100