Skip to content

Commit

Permalink
Ep8: $(...) -> .ast.
Browse files Browse the repository at this point in the history
  • Loading branch information
tcurtis committed Jul 20, 2010
1 parent 303e5a4 commit d4012b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/tutorial_episode_8.pod
Expand Up @@ -131,10 +131,10 @@ Here's where the updated action method for primary comes in.
This is shown below.

method primary($/) {
my $past := $( $<identifier> );
my $past := $<identifier>.ast;

for $<postfix_expression> {
my $expr := $( $_ );
my $expr := $_.ast;
$expr.unshift( $past );
$past := $expr;
}
Expand Down

0 comments on commit d4012b3

Please sign in to comment.