mirror of
https://github.com/github/codeql.git
synced 2026-03-17 13:06:48 +01:00
10 lines
272 B
Plaintext
10 lines
272 B
Plaintext
import swift
|
|
import codeql.swift.dataflow.DataFlow
|
|
|
|
from DataFlow::Node pred, DataFlow::Node succ
|
|
where
|
|
DataFlow::localFlowStep(pred, succ) and
|
|
not pred.getLocation() instanceof UnknownLocation and
|
|
not succ.getLocation() instanceof UnknownLocation
|
|
select pred, succ
|