Class ReturnNode
java.lang.Object
org.checkerframework.dataflow.cfg.node.Node
org.checkerframework.dataflow.cfg.node.ReturnNode
- All Implemented Interfaces:
org.plumelib.util.UniqueId
A node for a return statement:
return return expressionNo ReturnNode is created for implicit return statements.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final @Nullable NodeThe node of the returned expression.protected final ReturnTreeThe return tree. -
Constructor Summary
ConstructorsConstructorDescriptionReturnNode(ReturnTree returnTree, @Nullable Node result, Types types) Creates a node for the given return statement.ReturnNode(ReturnTree returnTree, @Nullable Node result, Types types, LambdaExpressionTree lambda, com.sun.tools.javac.code.Symbol.MethodSymbol methodSymbol) Deprecated.ReturnNode(ReturnTree returnTree, @Nullable Node result, Types types, MethodTree methodTree) Deprecated. -
Method Summary
Modifier and TypeMethodDescription<R,P> R accept(NodeVisitor<R, P> visitor, P p) Accept method of the visitor pattern.boolean@Nullable NodeThe result of the return node,nullotherwise.getTree()Returns theTreein the abstract syntax tree, ornullif no corresponding tree exists.inthashCode()toString()Methods inherited from class org.checkerframework.dataflow.cfg.node.Node
getBlock, getInSource, getTransitiveOperands, getType, getUid, isLValue, nodeCollectionToString, setBlock, setInSource, setLValue, toStringDebugMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.plumelib.util.UniqueId
getClassAndUid
-
Field Details
-
returnTree
The return tree. -
result
The node of the returned expression.
-
-
Constructor Details
-
ReturnNode
Creates a node for the given return statement.- Parameters:
returnTree- return treeresult- the returned expressiontypes- types util
-
ReturnNode
@Deprecated public ReturnNode(ReturnTree returnTree, @Nullable Node result, Types types, MethodTree methodTree) Deprecated.Creates a node for the given return statement.- Parameters:
returnTree- return treeresult- the returned expressiontypes- types utilmethodTree- method tree
-
ReturnNode
@Deprecated public ReturnNode(ReturnTree returnTree, @Nullable Node result, Types types, LambdaExpressionTree lambda, com.sun.tools.javac.code.Symbol.MethodSymbol methodSymbol) Deprecated.Creates a node for the given return statement.- Parameters:
returnTree- return treeresult- the returned expressiontypes- types utillambda- lambdamethodSymbol- methodSymbol
-
-
Method Details
-
getResult
The result of the return node,nullotherwise. -
getTree
Description copied from class:NodeReturns theTreein the abstract syntax tree, ornullif no corresponding tree exists. For instance, this is the case for anImplicitThisNode. -
accept
Description copied from class:NodeAccept method of the visitor pattern. -
toString
-
equals
-
hashCode
public int hashCode() -
getOperands
Description copied from class:Node- Specified by:
getOperandsin classNode- Returns:
- a collection containing all of the operand
Nodes of thisNode
-
ReturnNode(ReturnTree, Node, Types)