Revision 84fc52bd
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/DB/RequirementSpecItem.pm | ||
---|---|---|
99 | 99 |
return @errors; |
100 | 100 |
} |
101 | 101 |
|
102 |
sub sorted_children {
|
|
102 |
sub children_sorted {
|
|
103 | 103 |
my ($self, @args) = @_; |
104 | 104 |
|
105 | 105 |
croak "Not a writer" if @args; |
106 | 106 |
|
107 |
return [ sort { $a->position <=> $b->position } @{ $self->children } ]; |
|
107 |
my @children = sort { $a->position <=> $b->position } $self->children; |
|
108 |
return wantarray ? @children : \@children; |
|
108 | 109 |
} |
109 | 110 |
|
110 | 111 |
sub section { |
Auch abrufbar als: Unified diff
Pflichtenhefte: PDFs zu Arbeitskopie und Versionen erzeugen