use of com.intellij.xdebugger.frame.XValueContainer in project intellij-community by JetBrains.
the class XVariablesViewBase method createNewRootNode.
protected XValueContainerNode createNewRootNode(@Nullable XStackFrame stackFrame) {
XValueContainerNode root;
if (stackFrame == null) {
root = new XValueContainerNode<XValueContainer>(getTree(), null, new XValueContainer() {
}) {
};
} else {
root = new XStackFrameNode(getTree(), stackFrame);
}
getTree().setRoot(root, false);
return root;
}
Aggregations