title

class X::Attribute::Undeclared

class X::Attribute::Undeclared is X::Undeclared { }

Thrown when code refers to an attribute that has not been declared.

For example the code

class A { method m { $!notthere } }

Produces the error

Attribute $!notthere not declared in class A

Methods

package-kind

Returns the kind of package the attribute was used in (for example class, grammar)

package-name

Returns the name of the package in which the offensive attribute reference was performed.

Full-size type graph image as SVG

Methods supplied by class X::Undeclared

X::Attribute::Undeclared inherits from class X::Undeclared, which provides the following methods:

symbol

Returns the name of the undeclared symbol

what

Returns the kind of symbol that was not declared (for example variable, type, routine).

Since The symbol wasn't declared, the compiler sometimes has to guess (or rather disambiguate) what kind of symbol it encounter that wasn't declared. For example if you write

say a

Then the disambiguation defaults to reporting a missing subroutine, even though declaring a constant a = 'a' would also make the error go away.

Methods supplied by role X::Comp

X::Attribute::Undeclared inherits from class X::Undeclared, which does role X::Comp, which provides the following methods:

filename

The filename in which the compilation error occurred

line

The line number in which the compilation error occurred.

column

The column number of location where the compilation error occurred. (Rakudo does not implement that yet).

Methods supplied by class Exception

X::Attribute::Undeclared inherits from class Exception, which provides the following methods:

message

method message(Exception:D:) returns Str:D

This is a stub that must be overwritten by subclasses, and should return the exception message.

Special care should be taken that this method does not produce an exception itself.

backtrace

method backtrace(Exception:D:) returns Backtrace:D

Returns the backtrace associated with the exception. Only makes sense on exceptions that have been thrown at least once.

throw

method throw(Exception:D:)

Throws the exception.

rethrow

method rethrow(Exception:D:)

Rethrows an exception that has already been thrown at least once. This is different from throw in that it preserves the original backtrace.

fail

method fail(Exception:D:)

Same as fail $exception; i.e., it exits the calling Routine and returns the exception wrapped in a Failure object.

gist

multi method gist(Exception:D:)

Returns whatever the exception printer should produce for this exception. The default implementation returns message and backtrace separated by a newline.

Methods supplied by class Any

X::Attribute::Undeclared inherits from class Any, which provides the following methods:

ACCEPTS

multi method ACCEPTS(Any:D: Mu $other)

Returns True if $other === self (ie it checks object identity).

any

Interprets the invocant as a list and creates an any-Junction from it.

all

Interprets the invocant as a list and creates an all-Junction from it.

one

Interprets the invocant as a list and creates an one-Junction from it.

none

Interprets the invocant as a list and creates an none-Junction from it.

Methods supplied by class Mu

X::Attribute::Undeclared inherits from class Mu, which provides the following methods:

defined

multi sub    defined(Mu) returns Bool:D
multi method defined()   returns Bool:D

Returns False on the type object, and True otherwise.

Bool

multi sub    Bool(Mu) returns Bool:D
multi method Bool()   returns Bool:D

Returns False on the type object, and True otherwise.

Str

multi method Str()   returns Str

Returns a string representation of the invocant, intended to be machine readable.

gist

multi sub    gist(Mu) returns Str
multi method gist()   returns Str

Returns a string representation of the invocant, optimized for fast recognition by humans.

The default gist method in Mu re-dispatches to the perl method, but many built-in classes override it to something more specific.

perl

multi sub    perl(Mu) returns Str
multi method perl()   returns Str

Returns a Perlish representation of the object (i.e., can usually be reparsed to regenerate the object).

clone

method clone(*%twiddles)

Creates a shallow clone of the invocant. If named arguments are passed to it, their values are used in every place where an attribute name matches the name of a named argument.

new

multi method new(*%attrinit)

Default method for constructing (create + initialize) new objects of a class. This method expects only named arguments which are then used to initialize attributes with accessors of the same name.

Classes may provide their own new method to override this default.

bless

method bless(Mu $candidate, *%attrinit) returns Mu:D

Lower-level object construction method than new.

If you pass a Whatever as a candidate, it creates a new object of the same type as the invocant, and then uses the named arguments to initialize attributes.

If you pass something other than a Whatever object as a candidate, it simply does the attribute initialization on the $candidate.

In both cases, the object with the attributes initialized is returned.

You can use this method when writing custom constructors:

class Point {
    has $.x;
    has $.y;
    multi method new($x, $y) {
        self.bless(:$x, :$y);
    }
}
my $p = Point.new(-1, 1);

(Though each time you write a custom constructor, remember that it makes subclassing harder).

CREATE

method CREATE() returns Mu:D

Allocates a new object of the same type as the invocant, without initializating any attributes.

print

multi method print() returns Bool:D

Prints value to $*OUT after stringification using .Str method without newline at end.

say

multi method say() returns Bool:D

Prints value to $*OUT after stringification using .gist method with newline at end.

ACCEPTS

multi method ACCEPTS(Mu:U: $other)

Performs a type check. Returns True if $other conforms to the invocant (which is always a type object or failure).

This is the method that is triggered on smart-matching against type objects, for example in if $var ~~ Int { ... }.

WHICH

multi method WHICH() returns ObjAt:D

Returns an object of type ObjAt which uniquely identifies the object. Value types override this method which makes sure that two equivalent objects return the same return value from WHICH.