Skip to content

Commit

Permalink
Fudge binding-arrays for Niecza and fix obsolete slurpy syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Jun 26, 2011
1 parent 2c98722 commit 0ef3a04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion S03-operators/binding-arrays.t
Expand Up @@ -27,6 +27,7 @@ plan 47;
is $var, "f", "basic binding of an array element (3)";
}

#?niecza skip 'delete'
{
my @array = <a b c>;
my $var = "d";
Expand Down Expand Up @@ -127,7 +128,7 @@ plan 47;

#?rakudo skip 'lexically scoped subs'
{
my sub foo (@args) { push @args, "new_value" }
my sub foo (*@args) { push @args, "new_value" }

my @array = <a b c>;
my $var = "d";
Expand All @@ -153,6 +154,7 @@ plan 47;
}

# Binding with .splice
#?niecza skip 'splice'
{
my @array = <a b c>;
my $var = "d";
Expand Down Expand Up @@ -224,6 +226,7 @@ plan 47;
}

# RT #61566
#?niecza skip 'Exception'
{
eval 'my @rt61566 := 1';
#?rakudo todo 'Positional type check on array binding'
Expand Down

0 comments on commit 0ef3a04

Please sign in to comment.