File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
ruby/ql/lib/codeql/ruby/frameworks/stdlib Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
private import ruby
6
- private import codeql.ruby.AST
7
- private import codeql.ruby.DataFlow
8
6
private import codeql.ruby.ApiGraphs
9
- private import codeql.ruby.frameworks.Stdlib
10
7
private import codeql.ruby.Concepts
11
- private import codeql.ruby.frameworks.core.Kernel
12
8
13
9
/**
14
10
* Provides modeling for the `Open3` library.
@@ -58,7 +54,7 @@ module Open3 {
58
54
59
55
override predicate isShellInterpreted ( DataFlow:: Node arg ) {
60
56
// A command in the pipeline is executed in a subshell if it is given as a single string argument.
61
- arg .asExpr ( ) .getExpr ( ) instanceof StringlikeLiteral and
57
+ arg .asExpr ( ) .getExpr ( ) instanceof Ast :: StringlikeLiteral and
62
58
arg = this .getAnArgument ( )
63
59
}
64
60
}
You can’t perform that action at this time.
0 commit comments