//XXX: handle errors
List<Location> variables = new ArrayList<Location>();
NodeList children = response.getElemetsByName("stack");
for (int i = 0; i < children.getLength(); i++) {
variables.add(new LocationImpl(children.item(i)));
}
return variables;
}