The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
SimpleAnalyzer *
new(CLASS)
const char* CLASS;
    CODE:
        RETVAL = new SimpleAnalyzer();
    OUTPUT:
        RETVAL

void
DESTROY(self)
        SimpleAnalyzer * self
    CODE:
        if (!IsObjCppOwned(ST(0)))
            delete self;