getValueWorker(Value.THIS_ID, isolateId);
getValueWorker(Value.ROOT_ID, isolateId);
// request as many levels as we can get
int i = 0;
Value v = null;
do
{
v = getValueWorker(Value.LEVEL_ID-i, isolateId);
}
while( i++ < 128 && v != null);
// now that we've primed the DManager we can request the base variable whose
// children are the variables that are available
v = m_manager.getValue(Value.BASE_ID, isolateId);
if (v == null)
throw new VersionException();
return v.getMembers(this);
}