use of com.perl5.lang.perl.idea.run.debugger.values.PerlXValueGroup in project Perl5-IDEA by Camelcade.
the class PerlStackFrame method computeChildren.
@Override
public void computeChildren(@NotNull XCompositeNode node) {
PerlValueDescriptor[] lexicals = myFrameDescriptor.getLexicals();
PerlValueDescriptor[] globals = myFrameDescriptor.getGlobals();
PerlValueDescriptor[] args = myFrameDescriptor.getArgs();
int mainSize = myFrameDescriptor.getMainSize();
boolean fallback = true;
XValueChildrenList list = new XValueChildrenList();
if (globals != null && globals.length > 0) {
list.addTopGroup(new PerlXValueGroup("Global variables", "our", PerlIcons.OUR_GUTTER_ICON, globals, this, false));
fallback = false;
}
if (mainSize > 0) {
list.addTopGroup(new PerlXMainGroup(this, mainSize));
fallback = false;
}
if (args != null && args.length > 0) {
list.addTopGroup(new PerlXValueGroup("Arguments", null, PerlIcons.ARGS_GUTTER_ICON, args, this, true));
fallback = false;
}
if (lexicals != null && lexicals.length > 0) {
list.addTopGroup(new PerlXValueGroup("Lexical variables", "my/state", PerlIcons.MY_GUTTER_ICON, lexicals, this, true));
fallback = false;
}
if (fallback) {
super.computeChildren(node);
} else {
node.addChildren(list, true);
}
}
Aggregations