/src/kilim/analysis/BBList.java

http://github.com/kilim/kilim · Java · 19 lines · 10 code · 1 blank · 8 comment · 0 complexity · c486152729b7cba86dab3cf2c6c00cd4 MD5 · raw file

  1. /* Copyright (c) 2006, Sriram Srinivasan
  2. *
  3. * You may distribute this software under the terms of the license
  4. * specified in the file "License"
  5. */
  6. package kilim.analysis;
  7. import java.util.ArrayList;
  8. /**
  9. * Just a convenient alias for ArrayList<BasicBlock>
  10. */
  11. public class BBList extends ArrayList<BasicBlock>
  12. {
  13. private static final long serialVersionUID = -1768924113292685739L;
  14. public BBList() {}
  15. public BBList(int size) {
  16. super(size);
  17. }
  18. }