We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c9170 commit 41ac0fcCopy full SHA for 41ac0fc
swift/ql/lib/codeql/swift/controlflow/ControlFlowGraph.qll
@@ -28,15 +28,10 @@ class CfgScope extends Scope instanceof CfgScope::Range_ {
28
* Only nodes that can be reached from an entry point are included in the CFG.
29
*/
30
class ControlFlowNode extends Node {
31
- /** Gets a textual representation of this control flow node. */
32
- string toString() { none() }
33
34
/** Gets the AST node that this node corresponds to, if any. */
35
ControlFlowElement getNode() { none() }
36
37
- /** Gets the location of this control flow node. */
38
- Location getLocation() { none() }
39
-
40
/** Gets the file of this control flow node. */
41
final File getFile() { result = this.getLocation().getFile() }
42
0 commit comments