comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/ReturnNode.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents 213c1297a814
children
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
26 26
27 public class ReturnNode extends StatementNode { 27 public class ReturnNode extends StatementNode {
28 28
29 private static final ReturnException EXCEPTION = new ReturnException(); 29 private static final ReturnException EXCEPTION = new ReturnException();
30 30
31 @Child 31 @Child private StatementNode expr;
32 private StatementNode expr;
33 32
34 public ReturnNode(StatementNode expr) { 33 public ReturnNode(StatementNode expr) {
35 this.expr = adoptChild(expr); 34 this.expr = adoptChild(expr);
36 } 35 }
37 36