mirror of
https://github.com/github/codeql.git
synced 2026-07-29 06:46:46 +02:00
9 lines
303 B
Plaintext
9 lines
303 B
Plaintext
import swift
|
|
import codeql.swift.controlflow.ControlFlowGraph
|
|
|
|
class MyRelevantNode extends ControlFlowNode {
|
|
MyRelevantNode() { this.getScope().getLocation().getFile().getName().matches("%swift/ql/test%") }
|
|
}
|
|
|
|
import codeql.swift.controlflow.internal.ControlFlowGraphImpl::TestOutput<MyRelevantNode>
|