mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
QL: Fix naming.
This commit is contained in:
@@ -270,7 +270,7 @@ module KindPredicatesLog {
|
||||
else result = "<Summary event>"
|
||||
}
|
||||
|
||||
Array getRa(string ordering) { result = this.getObject("ra").getArray(ordering) }
|
||||
Array getRA(string ordering) { result = this.getObject("ra").getArray(ordering) }
|
||||
}
|
||||
|
||||
class SentinelEmpty extends SummaryEvent {
|
||||
@@ -334,7 +334,7 @@ module KindPredicatesLog {
|
||||
* Gets the RA for this event. Unlike recursive predicates, a COMPUTE_SIMPLE
|
||||
* event only has one pipeline ordering (and it's named "pipeline").
|
||||
*/
|
||||
Array getRa() { result = this.getObject("ra").getArray("pipeline") }
|
||||
Array getRA() { result = this.getObject("ra").getArray("pipeline") }
|
||||
}
|
||||
|
||||
class ComputeRecursive extends SummaryEvent {
|
||||
|
||||
@@ -37,7 +37,7 @@ predicate extractInformation(
|
||||
pragma[only_bind_out](tuples.getFloat(pipelineIndex)) = maxTupleCount and
|
||||
tuples = run.getCounts() and
|
||||
duplicationPercentages = run.getDuplicationPercentage() and
|
||||
ra = simple.getRa()
|
||||
ra = simple.getRA()
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user