Skip to content

Commit

Permalink
Support \$a (for is parcel) again.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jun 2, 2011
1 parent 80f907c commit 4a8e16a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Perl6/SymbolTable.pm
Expand Up @@ -272,6 +272,9 @@ class Perl6::SymbolTable is HLL::Compiler::SerializationContextBuilder {
if %param_info<is_multi_invocant> {
$flags := $flags + $SIG_ELEM_MULTI_INVOCANT;
}
if %param_info<is_parcel> {
$flags := $flags + $SIG_ELEM_IS_PARCEL;
}
pir::repr_bind_attr_int__vPPsI($parameter, $par_type, '$!flags', $flags);
$set_attrs.push(self.set_attribute_typed($parameter, $par_type,
'$!flags', $flags, int));
Expand Down

0 comments on commit 4a8e16a

Please sign in to comment.