1 // JSRInfo.java, created Mon Nov 4 10:36:55 2002 by joewhaley 2 // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu> 3 // Licensed under the terms of the GNU LGPL; see COPYING for details. 4 package joeq.Compiler.Quad; 5 6 /*** 7 * 8 * @author John Whaley <jwhaley@alum.mit.edu> 9 * @version $Id: JSRInfo.java 1456 2004-03-09 22:01:46Z jwhaley $ 10 */ 11 public class JSRInfo { 12 13 public BasicBlock entry_block; 14 public BasicBlock exit_block; 15 public boolean[] changedLocals; 16 17 public JSRInfo(BasicBlock entry, BasicBlock exit, boolean[] changed) { 18 this.entry_block = entry; 19 this.exit_block = exit; 20 this.changedLocals = changed; 21 } 22 23 }