NAME

ExtUtils::XSpp::Node::Method - Node representing a method

DESCRIPTION

An ExtUtils::XSpp::Node::Function sub-class representing a single method declaration in a class such as

class FooBar {
  int foo(double someArgument); // <-- this one
}

METHODS

new

Creates a new ExtUtils::XSpp::Node::Argument.

Most of the functionality of this class is inherited. This means that all named parameters of ExtUtils::XSpp::Node::Function are also valid for this class.

perl_function_name

Returns the name of the Perl function (method) that this method represents. It is constructed from the method's class's name and the perl_name attribute.

is_method

Returns true, since all objects of this class are methods.

ACCESSORS

class

Returns the class (ExtUtils::XSpp::Node::Class) that the method belongs to.