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

« back to all changes in this revision

Viewing changes to src/setting/Mapping.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:
7
7
    method perl() {
8
8
        return '{' ~ self.pairs.map({ .perl }).join(", ") ~ '}';
9
9
    }
 
10
 
 
11
    method Capture(%self:) {
 
12
        Capture.new(|%self)
 
13
    }
10
14
}
11
15