mirror of
https://github.com/github/codeql.git
synced 2026-08-03 08:52:55 +02:00
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.
7 lines
111 B
Plaintext
7 lines
111 B
Plaintext
class Interface extends @interface {
|
|
string toString() { result = "interface" }
|
|
}
|
|
|
|
from Interface i
|
|
select i
|