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

« back to all changes in this revision

Viewing changes to src/setting/traits.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2010-03-29 22:47:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100329224734-7bwt61rrhpn6g7m4
Tags: 0.1~2010.01-1
* generate a manpage from docs/running.pod
* update the d/watch file
* New Upstream Version
  - update dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
    $c.container does $role;
123
123
}
124
124
 
125
 
multi trait_mod:<of>(Code $block is rw where { .defined }, Object $type is rw) {
 
125
multi trait_mod:<of>(Code $block is rw, Object $type is rw) {
126
126
    $block does Callable[$type];
127
127
}
128
128