hi,
I noticed the file calling_conventions.pod misses the sub pragmas
:postcomp (and I understood this is the same as :immediate) and
:outer(sub).
This patch adds these pragmas.
regards,
kjs
Index: docs/imcc/calling_conventions.pod
===================================================================
--- docs/imcc/calling_conventions.pod (revision 16890)
+++ docs/imcc/calling_conventions.pod (working copy)
@@ -132,7 +132,7 @@
Engage in multiple dispatch with the listed types.
-=item :immediate
+=item :immediate or :postcomp
This subroutine is executed immediately after being compiled. (Analagous to
C<BEGIN> in perl5.)
@@ -152,6 +152,10 @@
the method B<ToString> also be the v-table method B<get_string>), use
B<:vtable("get_string")>.
+=item :outer(subname)
+
+The marked C<.sub> is lexically nested within the sub known by B<subname>.
+
=back
Notes: