Devel-Declare
view release on metacpan or search on metacpan
stolen_chunk_of_toke.c view on Meta::CPAN
#endif
#if PERL_REVISION == 5 && PERL_VERSION > 8
#define PERL_5_9_PLUS
#endif
#if !defined(PERL_5_9_PLUS) && defined(PERL_IMPLICIT_CONTEXT)
/* These two are not exported from the core on Windows. With 5.9+
it's not an issue, because they're part of the PL_parser structure,
which is exported. On multiplicity/thread builds we can work
around the lack of export by this formulation, where we provide
a substitute implementation of the unexported accessor functions.
On single-interpreter builds we can't, because access is directly
via symbols that are not exported. */
# define Perl_Ilinestart_ptr my_Ilinestart_ptr
char **my_Ilinestart_ptr(pTHX) { return &(aTHX->Ilinestart); }
# define Perl_Isublex_info_ptr my_Isublex_info_ptr
static SUBLEXINFO *my_Isublex_info_ptr(pTHX) { return &(aTHX->Isublex_info); }
#endif
#ifdef PERL_5_9_PLUS
( run in 0.327 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )