We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0510b0c commit 8f985e0Copy full SHA for 8f985e0
1 file changed
java/ql/test/library-tests/types/record-classes/RecordClasses.ql
@@ -2,6 +2,7 @@ import java
2
3
from Record r, boolean isFinal, boolean isStatic, string superTypes
4
where
5
+ r.fromSource() and
6
(if r.isFinal() then isFinal = true else isFinal = false) and
7
(if r.isStatic() then isStatic = true else isStatic = false) and
8
superTypes = concat(RefType superType | superType = r.getASupertype() | superType.toString(), ",")
0 commit comments