mirror of
https://github.com/github/codeql.git
synced 2026-08-04 09:23:23 +02:00
14 lines
325 B
Plaintext
14 lines
325 B
Plaintext
class Sourceline extends @sourceline {
|
|
string toString() { result = "sourceline" }
|
|
}
|
|
|
|
class ParExpr extends Sourceline, @parexpr {
|
|
override string toString() { result = "(...)" }
|
|
}
|
|
|
|
from Sourceline id, int l, int code, int comm
|
|
where
|
|
numlines(id, l, code, comm) and
|
|
not id instanceof ParExpr
|
|
select id, l, code, comm
|