CORBA-IDLtree
view release on metacpan or search on metacpan
lib/CORBA/IDLtree.pm view on Meta::CPAN
my @cmntstack = (); # The comment stack stores a trailing comment on the
# struct/union/exception declaration line, e.g.
# struct mystruct { // This comment is stored in @cmntstack.
# ...
# };
# It is needed because the node is not constructed until the end of the
# structure declaration, and members may have trailing comments which
# would overwrite the single post_comment buffer.
sub in_annotation_def() {
return (@typestack && $typestack[$#typestack] == ANNOTATION);
}
sub set_verbose {
if (@_) {
$verbose = shift;
} else {
$verbose = 1;
}
}
( run in 0.626 second using v1.01-cache-2.11-cpan-65fba6d93b7 )