thisObj = (ObjectReference)evalTreeNode(objNode);
Value value = findValueInFrame(threadRef, memberName, thisObj);
return value;
} catch (VariableOrFieldNotFoundException e) {
ReferenceType refType = getClassType(objNode.getText());
Field field = refType.fieldByName(memberName);
Value value = refType.getValue(field);
return value;
}
}