/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
- /* Copyright (c) 2006, Sriram Srinivasan
- *
- * You may distribute this software under the terms of the license
- * specified in the file "License"
- */
- package kilim.analysis;
- import java.util.ArrayList;
- /**
- * Just a convenient alias for ArrayList<BasicBlock>
- */
- public class BBList extends ArrayList<BasicBlock>
- {
- private static final long serialVersionUID = -1768924113292685739L;
- public BBList() {}
- public BBList(int size) {
- super(size);
- }
- }