Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
$() support added
  • Loading branch information
FROGGS committed Jan 23, 2013
1 parent bd732d6 commit 9508fb8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion S05-match/make.t
Expand Up @@ -17,7 +17,6 @@ is($/.ast , 2);
{ make 'bar' } # But pretend we matched 'bar'
/;
ok($/, 'matched');
#?rakudo todo '$()'
is($(), 'bar');
is $/.ast, 'bar', '$/.ast';

Expand Down
1 change: 0 additions & 1 deletion S05-substitution/subst.t
Expand Up @@ -23,7 +23,6 @@ is $str, 'heilo', '.. it changes the receiver';

is 'a'.subst(/(.)/,"$1$0"), '', '.. and it can not access captures from strings';
is 'a'.subst(/(.)/,{$0~$0}),'aa', '.. you must wrap it in a closure';
#?rakudo skip '$() NYI?'
is '12'.subst(/(.)(.)/,{$()*2}),'24', '.. and do nifty things in closures';

# RT #116224
Expand Down

0 comments on commit 9508fb8

Please sign in to comment.