Merge pull request #3176 from orestisf1993/dump-asy-marks
dump-asy.pl: Add marks
This commit is contained in:
commit
c1e622be27
|
@ -56,7 +56,8 @@ sub dump_node {
|
||||||
if (!defined($n->{window})) {
|
if (!defined($n->{window})) {
|
||||||
$type = $n->{layout};
|
$type = $n->{layout};
|
||||||
}
|
}
|
||||||
my $name = qq|``$na'' ($type)|;
|
my $marks = $n->{marks} ? ' [' . join('][', @{$n->{marks}}) . ']' : '';
|
||||||
|
my $name = qq|``$na'' ($type)$marks|;
|
||||||
|
|
||||||
print $tmp "TreeNode n" . $n->{id} . " = makeNode(";
|
print $tmp "TreeNode n" . $n->{id} . " = makeNode(";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue