On Thu Jan 01 12:30:29 2015, barto...@gmx.de wrote:
> I added a test for this to S12-attributes/instance.t with commit
> https://github.com/perl6/roast/commit/67d36ed7db
>
> AFAIU the problem stems from ($.x, $.y) being (parsed as) a signature.
> Even with one attribute the same failure occurs:
>
On Sun Jul 20 10:16:40 2014, coke wrote:
> On Sat Apr 20 19:12:48 2013, pmichaud wrote:
> > On Sat, Apr 20, 2013 at 07:05:25PM -0700, Will Coleda wrote:
> > > This seems to be an OS X only error:
> > >
> > > ./perl6 -e 'say "\c[LINE FEED (LF)]"'
> > > ===SORRY!===
> > > Unrecognized character name
# New Ticket Created by Tobias Leich
# Please include the string: [perl #123969]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=123969 >
$ perl6-m -e 'class Foo is repr { has int32 $.idontcare; has
Foo $.bar }'
$ perl6-j --ll
This works now:
$ perl6 -e 'sub not-foo { "2" }; say not-foo();'
2
$ perl6 -e 'sub so-what { say "nyan"; }; so-what;'
nyan
$ perl6 -e 'sub m-foo { say "nyan"; }; m-foo;'
nyan
I added three tests to S06-other/misc.t with commit
https://github.com/perl6/roast/commit/c3d0fa4d70
I'm closing this
This works now:
$ perl6 -e 'my %h = not => 42; say %h.perl'
("not" => 42).hash
I added a test to S02-types/hash.t with commit
https://github.com/perl6/roast/commit/83da5c2c81
I'm closing this ticket as 'resolved'.
This works now:
$ perl6 -e 'class class {}; say class.new.perl'
class.new()
The test in S12-class/basic.t was unfudged with commit
https://github.com/perl6/roast/commit/b76efe4175
I'm closing this ticket as 'resolved'.