We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
range
self
1 parent 8857579 commit bec33b7Copy full SHA for bec33b7
python/ql/src/experimental/semmle/python/Concepts.qll
@@ -16,12 +16,12 @@ private import experimental.semmle.python.Frameworks
16
* extend `SystemCommandExecution::Range` instead.
17
*/
18
class SystemCommandExecution extends DataFlow::Node {
19
- SystemCommandExecution::Range self;
+ SystemCommandExecution::Range range;
20
21
- SystemCommandExecution() { this = self }
+ SystemCommandExecution() { this = range }
22
23
/** Gets the argument that specifies the command to be executed. */
24
- DataFlow::Node getCommand() { result = self.getCommand() }
+ DataFlow::Node getCommand() { result = range.getCommand() }
25
}
26
27
/** Provides a class for modeling new system-command execution APIs. */
0 commit comments