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 87aa39c commit 7d8284aCopy full SHA for 7d8284a
javascript/ql/lib/semmle/javascript/dataflow/internal/CallGraphs.qll
@@ -223,7 +223,7 @@ module CallGraph {
223
}
224
225
/**
226
- * Gets a step summary that object literals we permit when tracking object literals.
+ * Gets a step summary for tracking object literals.
227
*
228
* To avoid false flow from callbacks passed in via "named parameters", we only track object
229
* literals out of returns, not into calls.
@@ -236,6 +236,6 @@ module CallGraph {
236
shouldTrackObjectLiteral(node) and
237
result = node
238
or
239
- StepSummary::step(getAnObjectLiteralRef(node), result, [objectLiteralStep()])
+ StepSummary::step(getAnObjectLiteralRef(node), result, objectLiteralStep())
240
241
0 commit comments