/// @param frame Frame number, zero is oldest.
public static final Object[] p_getFrame = { null, "*frame", new Integer(-1) };
public static final Any getFrame(Context context, int frame)
{
context.checkAccess(CAN_READ);
StackFrame stackframe = null;
if (frame == -1) {
stackframe = context.frame();
} else {
if (frame >= 0 && frame < context.size()) {
stackframe = context.peek(frame);