Skip to content

Commit 48ef3b1

Browse files
committed
fix mistake in inlining
1 parent 090c5c3 commit 48ef3b1

File tree

1 file changed

+1
-1
lines changed
  • javascript/ql/lib/semmle/javascript/dataflow

1 file changed

+1
-1
lines changed

javascript/ql/lib/semmle/javascript/dataflow/Nodes.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ class ClassNode extends DataFlow::SourceNode instanceof ClassNode::Range {
970970
exists(DataFlow::TypeTracker t2, StepSummary summary, DataFlow::SourceNode prev |
971971
prev = this.getAClassReference(t2) and
972972
StepSummary::step(prev, result, summary) and
973-
t2 = t.append(summary)
973+
t = t2.append(summary)
974974
)
975975
}
976976

0 commit comments

Comments
 (0)