NAME ^

classes/genclass.pl - Create a template PMC file

SYNOPSIS ^

    % perl classes/genclass.pl Foo > Foo.pmc

DESCRIPTION ^

Use this script to generate a template PMC file with stubs for all the methods you need to fill in. See docs/vtables.pod for more information on adding a new PMC to Parrot.

To see what a minimal PMC looks like, create a PMC template and compile it to C.

    cd classes
    perl genclass.pl Foo > foo.pmc
    perl pmc2c.pl foo.pmc

SEE ALSO ^

classes/pmc2c.pl, docs/vtables.pod.


parrot