comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/controlflow/SLFunctionBodyNode.java @ 13882:afd6fa5e8229

SL: Feedback from reviewers
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 05 Feb 2014 08:02:15 -0800
parents 64c77f0577bb
children a08b8694f556
comparison
equal deleted inserted replaced
13881:272a166a9574 13882:afd6fa5e8229
34 * statement} throws an {@link SLReturnException exception} with the return value. This node catches 34 * statement} throws an {@link SLReturnException exception} with the return value. This node catches
35 * the exception. If the method ends without an explicit {@code return}, return the 35 * the exception. If the method ends without an explicit {@code return}, return the
36 * {@link SLNull#SINGLETON default null value}. 36 * {@link SLNull#SINGLETON default null value}.
37 */ 37 */
38 @NodeInfo(shortName = "body") 38 @NodeInfo(shortName = "body")
39 public class SLFunctionBodyNode extends SLExpressionNode { 39 public final class SLFunctionBodyNode extends SLExpressionNode {
40 40
41 /** The body of the function. */ 41 /** The body of the function. */
42 @Child private SLStatementNode bodyNode; 42 @Child private SLStatementNode bodyNode;
43 43
44 /** 44 /**