< prev index next >

test/testlibrary/jittester/src/jdk/test/lib/jittester/CatchBlock.java

Print this page




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package jdk.test.lib.jittester;
  25 
  26 import java.util.Collections;
  27 import java.util.List;
  28 import jdk.test.lib.jittester.visitors.Visitor;
  29 
  30 public class CatchBlock extends IRNode {
  31     public final List<Type> throwables;
  32 
  33     public CatchBlock(IRNode body, List<Type> throwables, int level) {

  34         this.level = level;
  35         this.throwables = Collections.unmodifiableList(throwables);
  36         addChild(body);
  37     }
  38 
  39     @Override
  40     public <T> T accept(Visitor<T> v) {
  41         return v.visit(this);
  42     }
  43 }


  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package jdk.test.lib.jittester;
  25 
  26 import java.util.Collections;
  27 import java.util.List;
  28 import jdk.test.lib.jittester.visitors.Visitor;
  29 
  30 public class CatchBlock extends IRNode {
  31     public final List<Type> throwables;
  32 
  33     public CatchBlock(IRNode body, List<Type> throwables, int level) {
  34         super(body.getResultType());
  35         this.level = level;
  36         this.throwables = Collections.unmodifiableList(throwables);
  37         addChild(body);
  38     }
  39 
  40     @Override
  41     public <T> T accept(Visitor<T> v) {
  42         return v.visit(this);
  43     }
  44 }
< prev index next >