Files
codeql/java/ql/lib/upgrades/44d61b266bebf261cb027872646262e645efa059/isInterface.ql
Chris Smowton 3514dd1e4d Java: merge the @class and @interface database types and tables
This will allow the extractor to emit class(id, ...) when all it knows about a class is its name, due to not having it available on the classpath. Previously it would have had to guess whether it belonged to @class or @interface, possibly introducing an inconsistency.
2023-02-14 17:21:23 +00:00

7 lines
111 B
Plaintext

class Interface extends @interface {
string toString() { result = "interface" }
}
from Interface i
select i