diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-18 22:09:17 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-24 23:37:59 -0700 |
commit | 1e4b6aa1907f271ce023ffe6f03439e2ce7f65dc (patch) | |
tree | 66d2f60ccc3e423a6fd77021258a20e81ebfcefc /embed.fnc | |
parent | 46e00a91c0fa7d86de7f65504ba0a402c422d58b (diff) | |
download | perl-1e4b6aa1907f271ce023ffe6f03439e2ce7f65dc.tar.gz |
Move coresub op-creation from gv.c to op.c
For functions that take handles as arguments, this code will need to
call static functions in op.c, like is_handle_constructor.
While we could make is_handle_constructor into a non-static function
and call it from gv.c, that seems backwards, as it would result in a
lot of op-manipulation code in the middle of gv.c.
So this commit creates a new function in op.c, called coresub_op,
which is only called from gv.c, from the &CORE::sub code.
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -266,6 +266,9 @@ Afnp |int |printf_nocontext|NN const char *format|... : Used in pp.c p |SV * |core_prototype |NULLOK SV *sv|NN const char *name \ |const int code|NULLOK int * const opnum +: Used in gv.c +p |OP * |coresub_op |NN SV *coreargssv|const int code \ + |const int opnum : Used in sv.c p |void |cv_ckproto_len |NN const CV* cv|NULLOK const GV* gv\ |NULLOK const char* p|const STRLEN len |