Skip to content

Latest commit

 

History

History
56 lines (31 loc) · 862 Bytes

extend.pod

File metadata and controls

56 lines (31 loc) · 862 Bytes

NAME

extend.pod - Parrot extension system

SYNOPSIS

#include "parrot/extend.h"

int main(int argc, char *argv[]) {
}

FILES

include/parrot/extend.h
extend.c

DESCRIPTION

Data Structures

Constants

Functions

Parrot_call_method(Parrot_INTERP interp, Parrot_PMC sub Parrot_PMC object, Parrot_STRING method, const char *signature, ...)

Calls a method on object with the given signature and arguments. sub is the method that's being called, and method is 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.