mirror of
https://github.com/github/codeql.git
synced 2026-03-21 15:06:46 +01:00
10 lines
299 B
Plaintext
10 lines
299 B
Plaintext
import javascript
|
|
|
|
from ControlFlowNode nd, ControlFlowNode succ
|
|
where succ = nd.getASuccessor()
|
|
select nd.getLocation().getFile().getStem(),
|
|
nd.getLocation().getStartLine(),
|
|
nd.describeControlFlowNode(),
|
|
succ.getLocation().getStartLine(),
|
|
succ.describeControlFlowNode()
|