File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ql/lib/codeql/actions/controlflow/internal Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ private class CompositeActionTree extends StandardPreOrderTree instanceof Compos
148
148
rank [ i ] ( AstNode child , Location l |
149
149
(
150
150
child = this .( CompositeAction ) .getAnInput ( ) or
151
- child = this .( CompositeAction ) .getAnOutputExpr ( ) or
151
+ child = this .( CompositeAction ) .getOutputs ( ) or
152
152
child = this .( CompositeAction ) .getRuns ( )
153
153
) and
154
154
l = child .getLocation ( )
@@ -172,7 +172,7 @@ private class WorkflowTree extends StandardPreOrderTree instanceof Workflow {
172
172
rank [ i ] ( AstNode child , Location l |
173
173
(
174
174
child = this .( ReusableWorkflow ) .getAnInput ( ) or
175
- child = this .( ReusableWorkflow ) .getAnOutputExpr ( ) or
175
+ child = this .( ReusableWorkflow ) .getOutputs ( ) or
176
176
child = this .( ReusableWorkflow ) .getStrategy ( ) or
177
177
child = this .( ReusableWorkflow ) .getAJob ( )
178
178
) and
@@ -202,7 +202,7 @@ private class OutputsTree extends StandardPreOrderTree instanceof Outputs {
202
202
override ControlFlowTree getChildNode ( int i ) {
203
203
result =
204
204
rank [ i ] ( AstNode child , Location l |
205
- child = super .getOutputExpr ( _ ) and l = child .getLocation ( )
205
+ child = super .getAnOutputExpr ( ) and l = child .getLocation ( )
206
206
|
207
207
child
208
208
order by
You can’t perform that action at this time.
0 commit comments