prompto.debug.stack.LeanStack Maven / Gradle / Ivy
The newest version!
package prompto.debug.stack;
import java.util.ArrayList;
@SuppressWarnings("serial")
public class LeanStack extends ArrayList implements IStack {
public LeanStack() {
}
public LeanStack(IStack> stack) {
stack.forEach(f->add(new LeanStackFrame(f)));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy