Example: if_stmt (cont'd)
rule if_stmt { 'if' <expression> 'then' <statement> {*} } ... method if_stmt($/) { my $past := PAST::Op.new( $($<expression>), $($<statement>), :pasttype('if') ); make $past; }continued...
Parrot | Parrot Compiler Toolkit | #37 |
rule if_stmt { 'if' <expression> 'then' <statement> {*} } ... method if_stmt($/) { my $past := PAST::Op.new( $($<expression>), $($<statement>), :pasttype('if') ); make $past; }continued...
Copyright © 2008 Patrick R. Michaud http://www.pmichaud.com/2008/pres/ |