We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d66cb7e commit 99bdef1Copy full SHA for 99bdef1
1 file changed
actions/ql/lib/codeql/actions/controlflow/internal/Cfg.qll
@@ -97,9 +97,9 @@ private module Implementation implements CfgShared::InputSig<Location> {
97
// Not using CFG splitting, so the following are just dummy types.
98
private newtype TUnit = Unit()
99
100
- class SplitKindBase = TUnit;
+ additional class SplitKindBase = TUnit;
101
102
- class Split extends TUnit {
+ additional class Split extends TUnit {
103
abstract string toString();
104
}
105
@@ -115,7 +115,7 @@ private module Implementation implements CfgShared::InputSig<Location> {
115
)
116
117
118
- int maxSplits() { result = 0 }
+ additional int maxSplits() { result = 0 }
119
120
predicate scopeFirst(CfgScope scope, AstNode e) {
121
first(scope.(Workflow), e) or
0 commit comments