return statement. The shape of this node is:
IReturnNode IExpressionNode <-- getReturnValueNode()For example,
return a + b;is represented as
IReturnNode IBinaryOperatorNode "+" IIdentifierNode "a" IIdentiferNode "b"If there is no return value, then there is no child node.
| |
| |