tagged release 0.6.4
[parrot.git] / languages / pugs / pmc / pugsundef.pmc
blobeebc1a4e683364de48403e8806572d717400cade
1 /*
2 Copyright (C) 2001-2008, The Perl Foundation.
3 $Id$
5 =head1 NAME
7 pugsundef.pmc - Pugs Undef
9 =head1 DESCRIPTION
11 C<PugsUndef> extends C<Exception> and C<Undef> to provide a Perl 6 C<Undef>.
13 =head2 Methods
15 =over 4
17 =cut
21 #include "parrot/embed.h"
23 pmclass PugsUndef extends PugsAny need_ext
24     extends Exception
25     extends Undef
26     does string
27     does boolean
28     does integer
29     does float
30     dynpmc
31     group pugs_group
32     hll Perl6
33     maps Exception
39 =back
41 =cut
46  * Local variables:
47  *   c-file-style: "parrot"
48  * End:
49  * vim: expandtab shiftwidth=4:
50  */