Skip to content

Commit 095d4d7

Browse files
committed
change import to an absolute import to fix warning
1 parent d7b69fc commit 095d4d7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

javascript/ql/src/semmle/javascript/dataflow/internal/CallGraphs.qll

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
private import javascript
6-
private import StepSummary
6+
private import semmle.javascript.dataflow.internal.StepSummary
77

88
cached
99
module CallGraph {
@@ -92,8 +92,7 @@ module CallGraph {
9292

9393
pragma[noinline]
9494
private DataFlow::SourceNode getABoundFunctionReferenceAux(
95-
DataFlow::FunctionNode function, int boundArgs, DataFlow::TypeTracker t,
96-
StepSummary summary
95+
DataFlow::FunctionNode function, int boundArgs, DataFlow::TypeTracker t, StepSummary summary
9796
) {
9897
exists(DataFlow::SourceNode prev |
9998
prev = getABoundFunctionReferenceAux(function, boundArgs, t) and

0 commit comments

Comments
 (0)