@@ -715,7 +715,7 @@ ExprNode exprNode(Expr e) { result.getExpr() = e }
715
715
* argument is passed by reference, use
716
716
* `definitionByReferenceNodeFromArgument` instead.
717
717
*/
718
- ExprNode convertedExprNode ( Expr e ) { result .getConvertedExpr ( ) = e }
718
+ deprecated ExprNode convertedExprNode ( Expr e ) { result .getConvertedExpr ( ) = e }
719
719
720
720
/**
721
721
* Gets the `Node` corresponding to the value of `p` at function entry.
@@ -731,15 +731,15 @@ DefinitionByReferenceNode definitionByReferenceNodeFromArgument(Expr argument) {
731
731
}
732
732
733
733
/** Gets the `VariableNode` corresponding to the variable `v`. */
734
- VariableNode variableNode ( Variable v ) { result .getVariable ( ) = v }
734
+ deprecated VariableNode variableNode ( Variable v ) { result .getVariable ( ) = v }
735
735
736
736
/**
737
737
* DEPRECATED: See UninitializedNode.
738
738
*
739
739
* Gets the `Node` corresponding to the value of an uninitialized local
740
740
* variable `v`.
741
741
*/
742
- Node uninitializedNode ( LocalVariable v ) { none ( ) }
742
+ deprecated Node uninitializedNode ( LocalVariable v ) { none ( ) }
743
743
744
744
/**
745
745
* Holds if data flows from `nodeFrom` to `nodeTo` in exactly one local
@@ -1008,7 +1008,7 @@ predicate localFlow(Node source, Node sink) { localFlowStep*(source, sink) }
1008
1008
* local (intra-procedural) steps.
1009
1009
*/
1010
1010
pragma [ inline]
1011
- predicate localInstructionFlow ( Instruction e1 , Instruction e2 ) {
1011
+ deprecated predicate localInstructionFlow ( Instruction e1 , Instruction e2 ) {
1012
1012
localFlow ( instructionNode ( e1 ) , instructionNode ( e2 ) )
1013
1013
}
1014
1014
@@ -1017,7 +1017,7 @@ predicate localInstructionFlow(Instruction e1, Instruction e2) {
1017
1017
* local (intra-procedural) steps.
1018
1018
*/
1019
1019
pragma [ inline]
1020
- predicate localExprFlow ( Expr e1 , Expr e2 ) { localFlow ( exprNode ( e1 ) , exprNode ( e2 ) ) }
1020
+ deprecated predicate localExprFlow ( Expr e1 , Expr e2 ) { localFlow ( exprNode ( e1 ) , exprNode ( e2 ) ) }
1021
1021
1022
1022
private newtype TContent =
1023
1023
TFieldContent ( Field f ) {
0 commit comments