C#: Fixup ShiftExpr rename.

This commit is contained in:
Michael Nebel
2023-01-09 11:16:17 +01:00
parent 36980bbf42
commit 902b0a60d0
2 changed files with 0 additions and 9 deletions

View File

@@ -32,9 +32,6 @@ module Private {
class LeftShiftExpr = RU::ExprNode::LeftShiftExpr;
/** DEPRECATED: Alias for LeftShiftExpr. */
deprecated class LShiftExpr = LeftShiftExpr;
predicate guardDirectlyControlsSsaRead = RU::guardControlsSsaRead/3;
predicate guardControlsSsaRead = RU::guardControlsSsaRead/3;

View File

@@ -397,9 +397,6 @@ module ExprNode {
override TLShiftOp getOp() { any() }
}
/** DEPRECATED: Alias for LeftShiftExpr. */
deprecated class LShiftExpr = LeftShiftExpr;
/** A right-shift operation. */
class RightShiftExpr extends BinaryOperation {
override CS::RightShiftExpr e;
@@ -407,9 +404,6 @@ module ExprNode {
override TRShiftOp getOp() { any() }
}
/** DEPRECATED: Alias for RightShiftExpr. */
deprecated class RShiftExpr = RightShiftExpr;
/** A conditional expression. */
class ConditionalExpr extends ExprNode {
override CS::ConditionalExpr e;