Skip to content

Commit a6a68ef

Browse files
hvitvedpaldepind
andauthored
Apply suggestions from code review
Co-authored-by: Simon Friis Vindum <[email protected]>
1 parent 1f5e02f commit a6a68ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/ql/lib/codeql/rust/controlflow/internal/ControlFlowGraphImpl.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ module ExprTrees {
238238
}
239239
}
240240

241-
class LogicalOrTree extends PostOrderTree, LogicalOrExpr {
241+
class LogicalOrExprTree extends PostOrderTree, LogicalOrExpr {
242242
final override predicate propagatesAbnormal(AstNode child) { child = this.getAnOperand() }
243243

244244
override predicate first(AstNode node) { first(this.getLhs(), node) }
@@ -261,7 +261,7 @@ module ExprTrees {
261261
}
262262
}
263263

264-
class LogicalAndTree extends PostOrderTree, LogicalAndExpr {
264+
class LogicalAndExprTree extends PostOrderTree, LogicalAndExpr {
265265
final override predicate propagatesAbnormal(AstNode child) { child = this.getAnOperand() }
266266

267267
override predicate first(AstNode node) { first(this.getLhs(), node) }

0 commit comments

Comments
 (0)