File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
cpp/ql/src/semmle/code/cpp
csharp/ql/src/semmle/code/csharp/dataflow/internal
java/ql/src/semmle/code/java/dataflow/internal Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ class BarrierGuard extends Expr {
345
345
/** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `branch`. */
346
346
abstract deprecated predicate checks ( Expr e , boolean branch ) ;
347
347
348
- /** Gets a node guarded by this. */
348
+ /** Gets a node guarded by this guard . */
349
349
final Node getAGuardedNode ( ) {
350
350
none ( ) // stub
351
351
}
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ class BarrierGuard extends IRGuardCondition {
181
181
/** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `b`. */
182
182
abstract deprecated predicate checks ( Instruction e , boolean b ) ;
183
183
184
- /** Gets a node guarded by this. */
184
+ /** Gets a node guarded by this guard . */
185
185
final Node getAGuardedNode ( ) {
186
186
none ( ) // stub
187
187
}
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ class BarrierGuard extends Internal::Guard {
177
177
/** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `v`. */
178
178
abstract deprecated predicate checks ( Expr e , AbstractValue v ) ;
179
179
180
- /** Gets a node guarded by this. */
180
+ /** Gets a node guarded by this guard . */
181
181
final Node getAGuardedNode ( ) {
182
182
none ( ) // stub
183
183
}
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ class BarrierGuard extends Guard {
431
431
/** Holds if this guard validates `e` upon evaluating to `branch`. */
432
432
abstract predicate checks ( Expr e , boolean branch ) ;
433
433
434
- /** Gets a node guarded by this. */
434
+ /** Gets a node guarded by this guard . */
435
435
final Node getAGuardedNode ( ) {
436
436
exists ( SsaVariable v , boolean branch , RValue use |
437
437
this .checks ( v .getAUse ( ) , branch ) and
You can’t perform that action at this time.
0 commit comments