@@ -40,12 +40,6 @@ class FunctionInput extends TFunctionInput {
4040 */
4141 predicate isParameter ( ParameterIndex index ) { none ( ) }
4242
43- /**
44- * Holds if this is the input value of the parameter with index `index`.
45- * DEPRECATED: Use `isParameter(index)` instead.
46- */
47- deprecated final predicate isInParameter ( ParameterIndex index ) { this .isParameter ( index ) }
48-
4943 /**
5044 * Holds if this is the input value pointed to (through `ind` number of indirections) by a
5145 * pointer parameter to a function, or the input value referred to by a reference parameter
@@ -84,16 +78,6 @@ class FunctionInput extends TFunctionInput {
8478 */
8579 predicate isParameterDeref ( ParameterIndex index ) { this .isParameterDeref ( index , 1 ) }
8680
87- /**
88- * Holds if this is the input value pointed to by a pointer parameter to a function, or the input
89- * value referred to by a reference parameter to a function, where the parameter has index
90- * `index`.
91- * DEPRECATED: Use `isParameterDeref(index)` instead.
92- */
93- deprecated final predicate isInParameterPointer ( ParameterIndex index ) {
94- this .isParameterDeref ( index )
95- }
96-
9781 /**
9882 * Holds if this is the input value pointed to by the `this` pointer of an instance member
9983 * function.
@@ -124,13 +108,6 @@ class FunctionInput extends TFunctionInput {
124108 */
125109 predicate isQualifierObject ( ) { this .isQualifierObject ( 1 ) }
126110
127- /**
128- * Holds if this is the input value pointed to by the `this` pointer of an instance member
129- * function.
130- * DEPRECATED: Use `isQualifierObject()` instead.
131- */
132- deprecated final predicate isInQualifier ( ) { this .isQualifierObject ( ) }
133-
134111 /**
135112 * Holds if this is the input value of the `this` pointer of an instance member function.
136113 *
@@ -396,16 +373,6 @@ class FunctionOutput extends TFunctionOutput {
396373 */
397374 predicate isParameterDeref ( ParameterIndex i , int ind ) { ind = 1 and this .isParameterDeref ( i ) }
398375
399- /**
400- * Holds if this is the output value pointed to by a pointer parameter to a function, or the
401- * output value referred to by a reference parameter to a function, where the parameter has
402- * index `index`.
403- * DEPRECATED: Use `isParameterDeref(index)` instead.
404- */
405- deprecated final predicate isOutParameterPointer ( ParameterIndex index ) {
406- this .isParameterDeref ( index )
407- }
408-
409376 /**
410377 * Holds if this is the output value pointed to by the `this` pointer of an instance member
411378 * function.
@@ -436,13 +403,6 @@ class FunctionOutput extends TFunctionOutput {
436403 */
437404 predicate isQualifierObject ( int ind ) { ind = 1 and this .isQualifierObject ( ) }
438405
439- /**
440- * Holds if this is the output value pointed to by the `this` pointer of an instance member
441- * function.
442- * DEPRECATED: Use `isQualifierObject()` instead.
443- */
444- deprecated final predicate isOutQualifier ( ) { this .isQualifierObject ( ) }
445-
446406 /**
447407 * Holds if this is the value returned by a function.
448408 *
@@ -462,12 +422,6 @@ class FunctionOutput extends TFunctionOutput {
462422 */
463423 predicate isReturnValue ( ) { none ( ) }
464424
465- /**
466- * Holds if this is the value returned by a function.
467- * DEPRECATED: Use `isReturnValue()` instead.
468- */
469- deprecated final predicate isOutReturnValue ( ) { this .isReturnValue ( ) }
470-
471425 /**
472426 * Holds if this is the output value pointed to by the return value of a function, if the function
473427 * returns a pointer, or the output value referred to by the return value of a function, if the
@@ -508,14 +462,6 @@ class FunctionOutput extends TFunctionOutput {
508462 */
509463 predicate isReturnValueDeref ( int ind ) { ind = 1 and this .isReturnValueDeref ( ) }
510464
511- /**
512- * Holds if this is the output value pointed to by the return value of a function, if the function
513- * returns a pointer, or the output value referred to by the return value of a function, if the
514- * function returns a reference.
515- * DEPRECATED: Use `isReturnValueDeref()` instead.
516- */
517- deprecated final predicate isOutReturnPointer ( ) { this .isReturnValueDeref ( ) }
518-
519465 /**
520466 * Holds if `i >= 0` and `isParameterDeref(i, ind)` holds for this is the value, or
521467 * if `i = -1` and `isQualifierObject(ind)` holds for this value.
0 commit comments