Home | History | Annotate | Download | only in code

Lines Matching refs:successors

36     /** {@code non-null;} list of successors that this block may branch to */
37 private final IntList successors;
50 * @param successors {@code non-null;} list of successors that this block may
55 public ByteBlock(int label, int start, int end, IntList successors,
69 if (successors == null) {
73 int sz = successors.size();
75 if (successors.get(i) < 0) {
76 throw new IllegalArgumentException("successors[" + i +
78 successors.get(i));
89 this.successors = successors;
129 * Gets the list of successors that this block may branch to
135 return successors;