From: Dave Rolsky Date: Thu, 3 Feb 2011 21:43:16 +0000 (-0600) Subject: Remove augment/inner bits from slides X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7a6b3be97e92f349cc4525256a12d96000dc070a;p=gitmo%2Fmoose-presentations.git Remove augment/inner bits from slides --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index a5f398f..e5124b0 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -2398,62 +2398,6 @@ around run => sub {
-

Augment and Inner

- - -
- -
-

Augment and Inner

- -
package Document;
-
-sub xml { '<doc>' . inner() . '</doc>' }
-
-package Report;
-extends 'Document';
-augment xml =>
-    sub { my $self = shift;
-          $self->title() . inner() . $self->summary() };
-
-package TPSReport;
-extends 'Report';
-augment xml =>
-    sub { my $self = shift;
-          $self->tps_xml() . inner() };
-
- -
-

Augment and Inner

- - -
- -
-

Augment and Inner Usage

- - -
- -

Method Modifiers Summary

-

Method Modifiers Summary

- - -
- -

Questions?