final List<VmVariable> globals = vmLibrary == null ? null : vmLibrary.getGlobals();
if (globals != null) {
final XValueChildrenList childrenList = new XValueChildrenList(globals.size());
for (VmVariable vmVariable : globals) {
final VmValue vmValue = vmVariable.getValue();
if (vmValue != null) {
childrenList.add(new DartValue(myDebugProcess, vmVariable.getName(), vmValue, false));
}
}