fix binding

This commit is contained in:
erik-krogh
2023-01-02 10:30:28 +01:00
parent b70ca77afc
commit 99dc0a8356

View File

@@ -11,9 +11,10 @@ private import codeql.ruby.dataflow.FlowSummary
/**
* A convenience class for defining value (c.f. taint) flow summaries.
*/
bindingset[this]
abstract private class Summary extends SimpleSummarizedCallable {
bindingset[this]
Summary() { this = this }
override predicate propagatesFlowExt(string input, string output, boolean preservesValue) {
this.propagates(input, output) and preservesValue = true
}