Files
codeql/java/ql/test/library-tests/literals/booleanLiterals/booleanLiterals.ql
Marcono1234 bb6e6f4808 Java: Split literals tests
This allows changing individual tests in the future without having to adjust
the expected output of all other tests.
2021-10-01 17:27:50 +02:00

6 lines
148 B
Plaintext

import semmle.code.java.Expr
from BooleanLiteral lit
where lit.getCompilationUnit().fromSource()
select lit, lit.getValue(), lit.getBooleanValue()