@@ -1924,9 +1924,6 @@ class VarAccess extends Expr, @varaccess {
19241924 exists ( UnaryAssignExpr e | e .getExpr ( ) = this )
19251925 }
19261926
1927- /** DEPRECATED: Alias for `isVarWrite`. */
1928- deprecated predicate isLValue ( ) { this .isVarWrite ( ) }
1929-
19301927 /**
19311928 * Holds if this variable access is a read access.
19321929 *
@@ -1936,9 +1933,6 @@ class VarAccess extends Expr, @varaccess {
19361933 */
19371934 predicate isVarRead ( ) { not exists ( AssignExpr a | a .getDest ( ) = this ) }
19381935
1939- /** DEPRECATED: Alias for `isVarRead`. */
1940- deprecated predicate isRValue ( ) { this .isVarRead ( ) }
1941-
19421936 /** Gets a printable representation of this expression. */
19431937 override string toString ( ) {
19441938 exists ( Expr q | q = this .getQualifier ( ) |
@@ -2002,14 +1996,8 @@ class VarWrite extends VarAccess {
20021996 * are source expressions of the assignment.
20031997 */
20041998 Expr getASource ( ) { exists ( Assignment e | e .getDest ( ) = this and e .getSource ( ) = result ) }
2005-
2006- /** DEPRECATED: (Inaccurately-named) alias for `getASource` */
2007- deprecated Expr getRhs ( ) { result = this .getASource ( ) }
20081999}
20092000
2010- /** DEPRECATED: Alias for `VarWrite`. */
2011- deprecated class LValue = VarWrite ;
2012-
20132001/**
20142002 * A read access to a variable.
20152003 *
@@ -2021,9 +2009,6 @@ class VarRead extends VarAccess {
20212009 VarRead ( ) { this .isVarRead ( ) }
20222010}
20232011
2024- /** DEPRECATED: Alias for `VarRead`. */
2025- deprecated class RValue = VarRead ;
2026-
20272012/** A method call is an invocation of a method with a list of arguments. */
20282013class MethodCall extends Expr , Call , @methodaccess {
20292014 /** Gets the qualifying expression of this method access, if any. */
@@ -2082,25 +2067,16 @@ class MethodCall extends Expr, Call, @methodaccess {
20822067 */
20832068 predicate isOwnMethodCall ( ) { Qualifier:: ownMemberAccess ( this ) }
20842069
2085- /** DEPRECATED: Alias for `isOwnMethodCall`. */
2086- deprecated predicate isOwnMethodAccess ( ) { this .isOwnMethodCall ( ) }
2087-
20882070 /**
20892071 * Holds if this is a method call to an instance method of the enclosing
20902072 * class `t`. That is, the qualifier is either an explicit or implicit
20912073 * `t`-qualified `this` or `super`.
20922074 */
20932075 predicate isEnclosingMethodCall ( RefType t ) { Qualifier:: enclosingMemberAccess ( this , t ) }
20942076
2095- /** DEPRECATED: Alias for `isEnclosingMethodCall`. */
2096- deprecated predicate isEnclosingMethodAccess ( RefType t ) { this .isEnclosingMethodCall ( t ) }
2097-
20982077 override string getAPrimaryQlClass ( ) { result = "MethodCall" }
20992078}
21002079
2101- /** DEPRECATED: Alias for `MethodCall`. */
2102- deprecated class MethodAccess = MethodCall ;
2103-
21042080/** A type access is a (possibly qualified) reference to a type. */
21052081class TypeAccess extends Expr , Annotatable , @typeaccess {
21062082 /** Gets the qualifier of this type access, if any. */
@@ -2275,25 +2251,16 @@ class VirtualMethodCall extends MethodCall {
22752251 }
22762252}
22772253
2278- /** DEPRECATED: Alias for `VirtualMethodCall`. */
2279- deprecated class VirtualMethodAccess = VirtualMethodCall ;
2280-
22812254/** A static method call. */
22822255class StaticMethodCall extends MethodCall {
22832256 StaticMethodCall ( ) { this .getMethod ( ) .isStatic ( ) }
22842257}
22852258
2286- /** DEPRECATED: Alias for `StaticMethodCall`. */
2287- deprecated class StaticMethodAccess = StaticMethodCall ;
2288-
22892259/** A call to a method in the superclass. */
22902260class SuperMethodCall extends MethodCall {
22912261 SuperMethodCall ( ) { this .getQualifier ( ) instanceof SuperAccess }
22922262}
22932263
2294- /** DEPRECATED: Alias for `SuperMethodCall`. */
2295- deprecated class SuperMethodAccess = SuperMethodCall ;
2296-
22972264/**
22982265 * A constructor call, which occurs either as a constructor invocation inside a
22992266 * constructor, or as part of a class instance expression.
0 commit comments