Skip to content

Commit 902b0a6

Browse files
committed
C#: Fixup ShiftExpr rename.
1 parent 36980bb commit 902b0a6

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/ModulusAnalysisSpecific.qll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ module Private {
3232

3333
class LeftShiftExpr = RU::ExprNode::LeftShiftExpr;
3434

35-
/** DEPRECATED: Alias for LeftShiftExpr. */
36-
deprecated class LShiftExpr = LeftShiftExpr;
37-
3835
predicate guardDirectlyControlsSsaRead = RU::guardControlsSsaRead/3;
3936

4037
predicate guardControlsSsaRead = RU::guardControlsSsaRead/3;

csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -397,19 +397,13 @@ module ExprNode {
397397
override TLShiftOp getOp() { any() }
398398
}
399399

400-
/** DEPRECATED: Alias for LeftShiftExpr. */
401-
deprecated class LShiftExpr = LeftShiftExpr;
402-
403400
/** A right-shift operation. */
404401
class RightShiftExpr extends BinaryOperation {
405402
override CS::RightShiftExpr e;
406403

407404
override TRShiftOp getOp() { any() }
408405
}
409406

410-
/** DEPRECATED: Alias for RightShiftExpr. */
411-
deprecated class RShiftExpr = RightShiftExpr;
412-
413407
/** A conditional expression. */
414408
class ConditionalExpr extends ExprNode {
415409
override CS::ConditionalExpr e;

0 commit comments

Comments
 (0)