use of org.elixir_lang.debugger.node.ElixirVariableBinding in project intellij-elixir by KronicDeth.
the class ElixirStackFrame method computeChildren.
@Override
public void computeChildren(@NotNull XCompositeNode node) {
XValueChildrenList myVariables = new XValueChildrenList(myTraceElement.getBindings().size());
for (ElixirVariableBinding binding : myTraceElement.getBindings()) {
myVariables.add(binding.getName(), getVariableValue(binding.getValue()));
}
node.addChildren(myVariables, true);
}
Aggregations