NAME
extend.pod - Parrot extension system
SYNOPSIS
#include "parrot/extend.h"
int main(int argc, char *argv[]) {
}
FILES
DESCRIPTION
Data Structures
TODO
Constants
TODO
Functions
Parrot_call_method(Parrot_Interp interp, Parrot_PMC sub Parrot_PMC object, Parrot_String method, const char *signature, ...)-
Calls a method on
objectwith the given signature and arguments.subis the method that's being called, andmethodis the name of the method in the call stack. This is useful for calling aliased methods.
SEE ALSO
extend.c and extend.h for the implementation.