use of com.intellij.xdebugger.frame.XValueChildrenList in project intellij-elixir by KronicDeth.
the class ElixirPidXValue method computeChildren.
@Override
public void computeChildren(@NotNull XCompositeNode node) {
XValueChildrenList childrenList = new XValueChildrenList(3);
addNamedChild(childrenList, getValue().node(), "node");
addNamedChild(childrenList, getValue().id(), "id");
addNamedChild(childrenList, getValue().serial(), "serial");
node.addChildren(childrenList, true);
}
Aggregations