comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/controlflow/SLFunctionBodyNode.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 503529c65456
children a63bda98cfdb
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE. 39 * SOFTWARE.
40 */ 40 */
41 package com.oracle.truffle.sl.nodes.controlflow; 41 package com.oracle.truffle.sl.nodes.controlflow;
42 42
43 import com.oracle.truffle.api.frame.*; 43 import com.oracle.truffle.api.frame.VirtualFrame;
44 import com.oracle.truffle.api.nodes.*; 44 import com.oracle.truffle.api.nodes.NodeInfo;
45 import com.oracle.truffle.api.source.*; 45 import com.oracle.truffle.api.source.SourceSection;
46 import com.oracle.truffle.api.utilities.*; 46 import com.oracle.truffle.api.utilities.BranchProfile;
47 import com.oracle.truffle.sl.nodes.*; 47 import com.oracle.truffle.sl.nodes.SLExpressionNode;
48 import com.oracle.truffle.sl.runtime.*; 48 import com.oracle.truffle.sl.nodes.SLRootNode;
49 import com.oracle.truffle.sl.nodes.SLStatementNode;
50 import com.oracle.truffle.sl.runtime.SLNull;
49 51
50 /** 52 /**
51 * The body of a user-defined SL function. This is the node referenced by a {@link SLRootNode} for 53 * The body of a user-defined SL function. This is the node referenced by a {@link SLRootNode} for
52 * user-defined functions. It handles the return value of a function: the {@link SLReturnNode return 54 * user-defined functions. It handles the return value of a function: the {@link SLReturnNode return
53 * statement} throws an {@link SLReturnException exception} with the return value. This node catches 55 * statement} throws an {@link SLReturnException exception} with the return value. This node catches