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 5bb4a1a commit d05a8b8Copy full SHA for d05a8b8
python/ql/src/semmle/python/dataflow/new/internal/DataFlowPublic.qll
@@ -193,13 +193,6 @@ class CallCfgNode extends CfgNode {
193
194
/** Gets the data-flow node corresponding to the named argument of the call corresponding to this data-flow node */
195
Node getArgByName(string name) { result.asCfgNode() = node.getArgByName(name) }
196
-
197
- /** Gets the data-flow node corresponding to an argument of the call corresponding to this data-flow node */
198
- Node getAnArg() {
199
- exists(int n | result = this.getArg(n))
200
- or
201
- exists(string name | result = this.getArgByName(name))
202
- }
203
}
204
205
/**
0 commit comments