~ubuntu-branches/ubuntu/precise/rakudo/precise

« back to all changes in this revision

Viewing changes to src/classes/RoleHOW.pir

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghedini
  • Date: 2011-05-17 11:31:09 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110517113109-rmfir654u1axbpt4
Tags: 0.1~2011.04-1
* New upstream release (Closes: #601862, #585762, #577502)
* New maintainer
* Switch to 3.0 (quilt) format
* Update dependencies (Closes: #584498)
* Update debian/copyright to lastest DEP5 revision
* Do not generate/install perl6 manpage (now done by the build system)
* Enable tests
* Bump Standards-Version to 3.9.2 (no changes needed)
* Do not install extra LICENSE files and duplicated docs
* Remove debian/clean (no more needed)
* Add Vcs-* fields in debian/control
* Rewrite (short) description
* Update upstream copyright years
* Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## $Id$
2
 
 
3
 
=head1 TITLE
4
 
 
5
 
RoleHOW - default metaclass for Perl 6 roles
6
 
 
7
 
=head1 DESCRIPTION
8
 
 
9
 
This class subclasses ClassHOW to provide role-specific behaviors.
10
 
 
11
 
=cut
12
 
 
13
 
.namespace ['RoleHOW']
14
 
 
15
 
.sub 'onload' :anon :init :load
16
 
    .local pmc p6meta
17
 
    p6meta = get_hll_global ['Perl6Object'], '$!P6META'
18
 
    p6meta.'new_class'('RoleHOW', 'parent'=>'ClassHOW')
19
 
.end
20
 
 
21
 
=back
22
 
 
23
 
=cut
24
 
 
25
 
# Local Variables:
26
 
#   mode: pir
27
 
#   fill-column: 100
28
 
# End:
29
 
# vim: expandtab shiftwidth=4 ft=pir: